Skip to content

Commit 3fcf6b2

Browse files
authored
Merge pull request #1394 from vim-jp/hh-update-vim9
Update vim9.{txt,jax}
2 parents 502a022 + f88ea81 commit 3fcf6b2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/vim9.jax

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*vim9.txt* For Vim バージョン 9.0. Last change: 2023 Oct 23
1+
*vim9.txt* For Vim バージョン 9.0. Last change: 2023 Dec 09
22

33
VIMリファレンスマニュアル by Bram Moolenaar
44

en/vim9.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*vim9.txt* For Vim version 9.0. Last change: 2023 Oct 23
1+
*vim9.txt* For Vim version 9.0. Last change: 2023 Dec 09
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1684,7 +1684,7 @@ the type must match: >
16841684
FuncVA = (v1: string, v: string2): number => 333 # Error!
16851685
FuncVA = (v: list<string>): number => 3 # Error!
16861686
1687-
If the destinataion funcref has no specified arguments, then there is no
1687+
If the destination funcref has no specified arguments, then there is no
16881688
argument type checking: >
16891689
var FuncUnknownArgs: func: number
16901690
FuncUnknownArgs = (v): number => v # OK

0 commit comments

Comments
 (0)