diff options
author | Will Stamper <epmatsw@gmail.com> | 2014-06-08 13:30:44 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-06-12 20:26:35 -0400 |
commit | 5b3b3fd3ed4372866730ae857e8c09d6e5d1167d (patch) | |
tree | e339a78f58924c5001633c394078d1c21669f09a /src/nvim/file_search.c | |
parent | 168575f3f73f79185db0abdb91be364c0d0f29f9 (diff) | |
download | rneovim-5b3b3fd3ed4372866730ae857e8c09d6e5d1167d.tar.gz rneovim-5b3b3fd3ed4372866730ae857e8c09d6e5d1167d.tar.bz2 rneovim-5b3b3fd3ed4372866730ae857e8c09d6e5d1167d.zip |
spelling fixes #827
Diffstat (limited to 'src/nvim/file_search.c')
-rw-r--r-- | src/nvim/file_search.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/file_search.c b/src/nvim/file_search.c index 4e2a9cb5d9..2e6cc616e5 100644 --- a/src/nvim/file_search.c +++ b/src/nvim/file_search.c @@ -130,7 +130,7 @@ typedef struct ff_visited { * 3) search from Vims current directory downwards for the file "tags" * As you can see, the first and the third search are for the same file, so for * the third search we can use the visited list of the first search. For the - * second search we must start from a empty visited list. + * second search we must start from an empty visited list. * The struct ff_visited_list_hdr is used to manage a linked list of already * visited lists. */ @@ -1089,7 +1089,7 @@ static int ff_check_visited(ff_visited_T **visited_list, char_u *fname, char_u * bool url = false; FileInfo file_info; - // 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. if (path_with_url(fname)) { vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1); |