summaryrefslogtreecommitdiffstats
path: root/runtime/doc/vim9.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-06-26 12:21:15 +0100
committerBram Moolenaar <Bram@vim.org>2022-06-26 12:21:15 +0100
commit8a3b805c6c9cae341d560df9c3567ebbe42a7404 (patch)
treee4698c444eb52cbb7aff2138a8491debceda4c5a /runtime/doc/vim9.txt
parent0fbc9260a75dfc4d86f20e7c0eb76878f513a212 (diff)
Update runtime files
Diffstat (limited to 'runtime/doc/vim9.txt')
-rw-r--r--runtime/doc/vim9.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/doc/vim9.txt b/runtime/doc/vim9.txt
index 7b1bc261f9..aef4230d9b 100644
--- a/runtime/doc/vim9.txt
+++ b/runtime/doc/vim9.txt
@@ -1,4 +1,4 @@
-*vim9.txt* For Vim version 8.2. Last change: 2022 Jun 20
+*vim9.txt* For Vim version 8.2. Last change: 2022 Jun 25
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -37,10 +37,10 @@ A secondary goal is to avoid Vim-specific constructs and get closer to
commonly used programming languages, such as JavaScript, TypeScript and Java.
The performance improvements can only be achieved by not being 100% backwards
-compatible. For example, making function arguments available in the
-"a:" dictionary adds quite a lot of overhead. In a Vim9 function this
-dictionary is not available. Other differences are more subtle, such as how
-errors are handled.
+compatible. For example, making function arguments available in the "a:"
+dictionary adds quite a lot of overhead. In a Vim9 function this dictionary
+is not available. Other differences are more subtle, such as how errors are
+handled.
The Vim9 script syntax and semantics are used in:
- a function defined with the `:def` command