minor tweaks in displayed texts

This commit is contained in:
Maxime Coste 2012-11-08 13:38:02 +01:00
parent 3a34fae9a7
commit 0e5f548f76

View File

@ -216,7 +216,7 @@ void do_select_regex(Context& context)
void do_split_regex(Context& context) void do_split_regex(Context& context)
{ {
context.input_handler().prompt("select: ", complete_nothing, context.input_handler().prompt("split: ", complete_nothing,
[](const String& ex, Context& context) [](const String& ex, Context& context)
{ context.editor().multi_select(std::bind(split_selection, _1, ex)); }, { context.editor().multi_select(std::bind(split_selection, _1, ex)); },
context); context);
@ -347,7 +347,7 @@ String runtime_directory()
#endif #endif
char* ptr = strrchr(buffer, '/'); char* ptr = strrchr(buffer, '/');
if (not ptr) if (not ptr)
throw runtime_error("unable do determine runtime directory"); throw runtime_error("unable to determine runtime directory");
return String(buffer, ptr); return String(buffer, ptr);
} }