runtime(doc): Fix enum example syntax
An ex-colon is not allowed before endenum. As no other examples in the file use an ex-colon remove them both. Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
5113831d16
commit
49a35f67eb
@ -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
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||||
@ -951,11 +951,11 @@ aliased: >
|
|||||||
*enum* *E1418* *E1419* *E1420*
|
*enum* *E1418* *E1419* *E1420*
|
||||||
An enum is a type that can have one of a list of values. Example: >
|
An enum is a type that can have one of a list of values. Example: >
|
||||||
|
|
||||||
:enum Color
|
enum Color
|
||||||
White,
|
White,
|
||||||
Red,
|
Red,
|
||||||
Green, Blue, Black
|
Green, Blue, Black
|
||||||
:endenum
|
endenum
|
||||||
<
|
<
|
||||||
*enumvalue* *E1422*
|
*enumvalue* *E1422*
|
||||||
The enum values are separated by commas. More than one enum value can be
|
The enum values are separated by commas. More than one enum value can be
|
||||||
|
|||||||
Reference in New Issue
Block a user