From 72668682aa9d3d4cb7b4a0378d7f51bb21fed472 Mon Sep 17 00:00:00 2001 From: h-east Date: Tue, 22 Apr 2025 20:41:26 +0900 Subject: [PATCH] Update vim9.{txt,jax} --- doc/vim9.jax | 2 +- en/vim9.txt | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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,)