vim-patch:8.1.2243: typos in comments (#16104)

Problem:    Typos in comments.
Solution:   Fix the typos. (Dominique Pelle, closes vim/vim#5160)  Also adjust
            formatting a bit.
32aa10203b
This commit is contained in:
dundargoc
2021-10-20 21:19:14 +02:00
committed by GitHub
parent c5525f265b
commit 81717d2461
5 changed files with 5 additions and 5 deletions

View File

@@ -1237,7 +1237,7 @@ static void qf_new_list(qf_info_T *qi, const char_u *qf_title)
// If the current entry is not the last entry, delete entries beyond
// the current entry. This makes it possible to browse in a tree-like
// way with ":grep'.
// way with ":grep".
while (qi->qf_listcount > qi->qf_curlist + 1) {
qf_free(&qi->qf_lists[--qi->qf_listcount]);
}