diff options
| -rw-r--r-- | src/nvim/quickfix.c | 2 | ||||
| -rw-r--r-- | src/nvim/version.c | 6 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 4997209556..e6b1e7b95a 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -3127,7 +3127,7 @@ static char_u *get_mef_name(void)      STRCPY(name, p_mef);      sprintf((char *)name + (p - p_mef), "%d%d", start, off);      STRCAT(name, p + 2); -    // Don't accept a symbolic link, its a security risk. +    // Don't accept a symbolic link, it's a security risk.      FileInfo file_info;      bool file_or_link_found = os_fileinfo_link((char *)name, &file_info);      if (!file_or_link_found) { diff --git a/src/nvim/version.c b/src/nvim/version.c index 962096000a..6662dff437 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -666,7 +666,7 @@ static const int included_patches[] = {    66,    // 65 NA    64, -  // 63, +  // 63 NA    62,    // 61 NA    60, @@ -683,7 +683,7 @@ static const int included_patches[] = {    49,    // 48 NA    47, -  // 46, +  46,    // 45 NA    // 44,    43, @@ -717,7 +717,7 @@ static const int included_patches[] = {    // 15 NA    // 14 NA    // 13 NA -  // 12, +  12,    // 11 NA    // 10 NA    // 9 NA  | 
