summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-04-23 15:46:35 +0200
committerBram Moolenaar <Bram@vim.org>2020-04-23 15:46:35 +0200
commitf7b398c6a9476a2004a42555b731ebf47b866408 (patch)
treee7ef8af71ec774f4d788816df6da446dee1a394d
parentbeae4084fd34c56d43787be73588070ddc474251 (diff)
downloadvim-git-f7b398c6a9476a2004a42555b731ebf47b866408.tar.gz
patch 8.2.0623: typo in test commentv8.2.0623
Problem: Typo in test comment. (Christ van Willegen) Solution: Avoid mixing up a data structure with a body part.
-rw-r--r--src/testdir/test_listdict.vim2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/test_listdict.vim b/src/testdir/test_listdict.vim
index 2087f77ec..a2cc6b5a2 100644
--- a/src/testdir/test_listdict.vim
+++ b/src/testdir/test_listdict.vim
@@ -547,7 +547,7 @@ func Test_dict_lock_extend()
call assert_equal({'a': 99, 'b': 100}, d)
endfunc
-" Cannot use += with a locked dick
+" Cannot use += with a locked dict
func Test_dict_lock_operator()
unlet! d
let d = {}
diff --git a/src/version.c b/src/version.c
index 7bfe8b050..b2268736f 100644
--- a/src/version.c
+++ b/src/version.c
@@ -747,6 +747,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 623,
+/**/
622,
/**/
621,