diff options
author | Dominique Pelle <dominique.pelle@gmail.com> | 2021-12-27 17:21:41 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-27 17:21:41 +0000 |
commit | af4a61a85d6e8cacc35324f266934bc463a21673 (patch) | |
tree | 3b2e75b8a36bc8e79d2bc407d929a84b69fd0e0c /src/findfile.c | |
parent | 5da36052a4bb0f3a9747ec3a8ab9d85e058e39fa (diff) | |
download | vim-git-af4a61a85d6e8cacc35324f266934bc463a21673.tar.gz |
patch 8.2.3914: various spelling mistakes in commentsv8.2.3914
Problem: Various spelling mistakes in comments.
Solution: Fix the mistakes. (Dominique Pellé, closes #9416)
Diffstat (limited to 'src/findfile.c')
-rw-r--r-- | src/findfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/findfile.c b/src/findfile.c index ab5977697..d3de9fc71 100644 --- a/src/findfile.c +++ b/src/findfile.c @@ -749,7 +749,7 @@ vim_findfile(void *search_ctx_arg) // downward search loop for (;;) { - // check if user user wants to stop the search + // check if user wants to stop the search ui_breakcheck(); if (got_int) break; @@ -1376,7 +1376,7 @@ ff_check_visited( int url = FALSE; #endif - // For an URL we only compare the name, otherwise we compare the + // For a URL we only compare the name, otherwise we compare the // device/inode (unix) or the full path name (not Unix). if (path_with_url(fname)) { |