summaryrefslogtreecommitdiffstats
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-07-06 13:31:28 +0100
committerBram Moolenaar <Bram@vim.org>2022-07-06 13:31:28 +0100
commitb8329db36a886355e6e9cb9986a3668fef78c438 (patch)
tree33ffb8b90e8cd13707eadfe3848c30a09d06c8fc /src/ex_docmd.c
parent5ed11535e0695163cec71033b98bb97356cf0113 (diff)
patch 9.0.0044: typos in comments, wrapping linesv9.0.0044
Problem: Typos in comments, wrapping lines. Solution: Adjust comments. Wrap lines.
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r--src/ex_docmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 697337cad9..fad0bdacaf 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -3120,7 +3120,7 @@ parse_command_modifiers(
// Special case: empty command uses "+":
// "'<,'>mods" -> "mods *+
// Use "*" instead of "'<,'>" to avoid the command getting
- // longer, in case is was allocated.
+ // longer, in case it was allocated.
mch_memmove(orig_cmd, cmd_start, len);
STRCPY(orig_cmd + len, " *+");
}