Skip to content

Commit 78e27f3

Browse files
authored
Vb.net: Fix typo in enum member syntax description (#49666)
- Was [<attribute list>] member name [ = initializer ], - Should be [<attribute list>] membername [ = initializer ], - Reason: `membername` is a single identifier; later in the document it is referred to as `membername`
1 parent 0df9a83 commit 78e27f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/visual-basic/language-reference/statements/enum-statement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ End Enum
6666

6767
Required. List of member constants being declared in this statement. Multiple members appear on individual source code lines.
6868

69-
Each `member` has the following syntax and parts: `[<attribute list>] member name [ = initializer ]`
69+
Each `member` has the following syntax and parts: `[<attribute list>] membername [ = initializer ]`
7070

7171
|Part|Description|
7272
|---|---|

0 commit comments

Comments
 (0)