diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2021-07-08 00:28:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-07 15:28:44 -0700 |
commit | 4547137aaff32b20172870a549d3a28a3c7adf1c (patch) | |
tree | 0f40a62b3741c57a6f5759dc25f8932a26922908 /src/nvim/ex_cmds.c | |
parent | e2bc7e321b4a8bec3727cf342a84eb1e85dadbc8 (diff) | |
download | rneovim-4547137aaff32b20172870a549d3a28a3c7adf1c.tar.gz rneovim-4547137aaff32b20172870a549d3a28a3c7adf1c.tar.bz2 rneovim-4547137aaff32b20172870a549d3a28a3c7adf1c.zip |
chore: use codespell to spell check #15016
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 4af7794317..3fb81dbd9f 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -103,7 +103,7 @@ typedef struct { // the preview window typedef struct { kvec_t(SubResult) subresults; - linenr_T lines_needed; // lines neede in the preview window + linenr_T lines_needed; // lines needed in the preview window } PreviewLines; #ifdef INCLUDE_GENERATED_DECLARATIONS @@ -4819,7 +4819,7 @@ char_u *check_help_lang(char_u *arg) * Return a heuristic indicating how well the given string matches. The * smaller the number, the better the match. This is the order of priorities, * from best match to worst match: - * - Match with least alpha-numeric characters is better. + * - Match with least alphanumeric characters is better. * - Match with least total characters is better. * - Match towards the start is better. * - Match starting with "+" is worse (feature instead of command) |