From 527e1027469b48b75d86335c2bf28732fc857d54 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Fri, 8 Sep 2017 16:27:52 +0200 Subject: [PATCH] Fix string match -en error typo Fixes #4386. --- src/builtin_string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtin_string.cpp b/src/builtin_string.cpp index a1e199ac0..c1c5211a8 100644 --- a/src/builtin_string.cpp +++ b/src/builtin_string.cpp @@ -900,7 +900,7 @@ static int string_match(parser_t &parser, io_streams_t &streams, int argc, wchar if (opts.entire && opts.index) { streams.err.append_format(BUILTIN_ERR_COMBO2, cmd, - _(L"--enter and --index are mutually exclusive")); + _(L"--entire and --index are mutually exclusive")); return STATUS_INVALID_ARGS; }