Skip to content

Commit

Permalink
Merge pull request #1900 from h-east/update-vim9class
Browse files Browse the repository at this point in the history
Update vim9class.{txt,jax}
  • Loading branch information
h-east authored Dec 29, 2024
2 parents 3c00317 + edae3a4 commit 36e27cc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions doc/vim9class.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*vim9class.txt* For Vim バージョン 9.1. Last change: 2024 Nov 11
*vim9class.txt* For Vim バージョン 9.1. Last change: 2024 Dec 29


VIMリファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -938,11 +938,11 @@ Note メソッド名は "new" で始まる必要があることに注意。"new(
*enum* *E1418* *E1419* *E1420*
列挙型は、値のリストの 1 つを持つことができる型である。例: >
:enum Color
enum Color
White,
Red,
Green, Blue, Black
:endenum
endenum
<
*enumvalue* *E1422*
列挙値はコンマで区切られる。複数の列挙値を 1 行にリストできる。最後の列挙値の
Expand Down
6 changes: 3 additions & 3 deletions en/vim9class.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*vim9class.txt* For Vim version 9.1. Last change: 2024 Nov 11
*vim9class.txt* For Vim version 9.1. Last change: 2024 Dec 29


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -951,11 +951,11 @@ aliased: >
*enum* *E1418* *E1419* *E1420*
An enum is a type that can have one of a list of values. Example: >
:enum Color
enum Color
White,
Red,
Green, Blue, Black
:endenum
endenum
<
*enumvalue* *E1422*
The enum values are separated by commas. More than one enum value can be
Expand Down

0 comments on commit 36e27cc

Please sign in to comment.