diff --git a/doc/vim9.jax b/doc/vim9.jax index eb3853a48..4ae060089 100644 --- a/doc/vim9.jax +++ b/doc/vim9.jax @@ -1,4 +1,4 @@ -*vim9.txt* For Vim バージョン 9.1. Last change: 2025 Apr 03 +*vim9.txt* For Vim バージョン 9.1. Last change: 2025 Apr 18 VIMリファレンスマニュアル by Bram Moolenaar diff --git a/en/vim9.txt b/en/vim9.txt index 54fb8f333..ba72358d1 100644 --- a/en/vim9.txt +++ b/en/vim9.txt @@ -1,4 +1,4 @@ -*vim9.txt* For Vim version 9.1. Last change: 2025 Apr 03 +*vim9.txt* For Vim version 9.1. Last change: 2025 Apr 18 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1493,11 +1493,11 @@ tuple a tuple with a single item of type |Number| tuple a tuple with two items of type |Number| and |String| tuple a tuple with three items of type |Number|, - |Float| and |Boolean|. + |Float| and |Boolean| tuple<...list> a variadic tuple with zero or more items of - type |Number|. + type |Number| tuple> a tuple with an item of type |Number| followed - by zero or more items of type |String|. + by zero or more items of type |String| Examples: > var myTuple: tuple = (20,)