]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): make order of verbs match order of operators
authorzeertzjq <zeertzjq@outlook.com>
Thu, 25 Sep 2025 20:07:24 +0000 (20:07 +0000)
committerChristian Brabandt <cb@256bit.org>
Thu, 25 Sep 2025 20:07:24 +0000 (20:07 +0000)
related: #18380
closes: #18388

Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/eval.txt

index d9819ce74ec3f285dd1b9534793d27c0ecff8ae3..5488050a874766631f30f81e5195e6b568d0a984 100644 (file)
@@ -1,4 +1,4 @@
-*eval.txt*     For Vim version 9.1.  Last change: 2025 Sep 24
+*eval.txt*     For Vim version 9.1.  Last change: 2025 Sep 25
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -3240,8 +3240,8 @@ declarations and assignments do not use a command.  |vim9-declaration|
 :let [{name1}, {name2}, ...] %= {expr1}
 :let [{name1}, {name2}, ...] .= {expr1}
 :let [{name1}, {name2}, ...] ..= {expr1}
-                       Like above, but append, add, subtract, multiply,
-                       divide, or modulo the value for each |List| or |Tuple|
+                       Like above, but add, subtract, multiply, divide,
+                       modulo, or append the value for each |List| or |Tuple|
                        item.
                        `.=` is not supported with Vim script version 2 and
                        later, see |vimscript-version|.
@@ -3260,7 +3260,7 @@ declarations and assignments do not use a command.  |vim9-declaration|
 :let [{name}, ..., ; {lastname}] -= {expr1}
 :let [{name}, ..., ; {lastname}] .= {expr1}
 :let [{name}, ..., ; {lastname}] ..= {expr1}
-                       Like above, but append/add/subtract the value for each
+                       Like above, but add/subtract/append the value for each
                        |List| item.
                        `.=` is not supported with Vim script version 2 and
                        later, see |vimscript-version|.