From 48249ea818684eafa848233db92bb5e859752f3a Mon Sep 17 00:00:00 2001 From: Ivan Oleynikov Date: Sat, 8 Dec 2018 18:59:13 +0300 Subject: [PATCH] Very minor grammar fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Probably, the extra «s» at the end of «exist» was added accidentally. A verb after «does not» in Present Simple definitely shouldn't have this extra «s». --- src/commands.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.cc b/src/commands.cc index cf9639fab..a4c99f02c 100644 --- a/src/commands.cc +++ b/src/commands.cc @@ -293,7 +293,7 @@ void edit(const ParametersParser& parser, Context& context, const ShellContext&) } ParameterDesc edit_params{ - { { "existing", { false, "fail if the file does not exists, do not open a new file" } }, + { { "existing", { false, "fail if the file does not exist, do not open a new file" } }, { "scratch", { false, "create a scratch buffer, not linked to a file" } }, { "debug", { false, "create buffer as debug output" } }, { "fifo", { true, "create a buffer reading its content from a named fifo" } },