diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-12-20 19:07:00 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-12-20 19:07:00 +0100 |
commit | fe72d08400d9064b3f959f1f62f279527e64835a (patch) | |
tree | ddd8190964a58001aaa585c0d942537dae0c08f9 /src/structs.h | |
parent | 95a9dd1efc5ae3221865f4970053a5708557e682 (diff) | |
download | vim-git-fe72d08400d9064b3f959f1f62f279527e64835a.tar.gz |
patch 8.2.0025: repeated word in commentv8.2.0025
Problem: Repeated word in comment.
Solution: Remove one. (Rene Nyffenegger, closes #5384)
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h index 71b5c6141..a543d3b07 100644 --- a/src/structs.h +++ b/src/structs.h @@ -68,7 +68,7 @@ typedef struct VimMenu vimmenu_T; #endif /* - * SCript ConteXt (SCTX): identifies a script script line. + * SCript ConteXt (SCTX): identifies a script line. * When sourcing a script "sc_lnum" is zero, "sourcing_lnum" is the current * line number. When executing a user function "sc_lnum" is the line where the * function was defined, "sourcing_lnum" is the line number inside the |