[docs] fix incorrect identifier style docs

This commit is contained in:
Ryan Fleury
2021-11-05 13:57:24 -06:00
parent f2958f5150
commit 1f9fd7d166
+4 -4
View File
@@ -503,13 +503,13 @@ The @code node_count and @code total_size are automatically maintained by the he
@doc("These constants control how MD_S8Stylize forms strings.") @doc("These constants control how MD_S8Stylize forms strings.")
@enum MD_IdentifierStyle: @enum MD_IdentifierStyle:
{ {
@doc("Also known as @code 'PascalCase'. Creates identifiers that look like: @code `ExampleIdentifier`") @doc("Creates identifiers where each word begins with an upper-case letter, with each subsequent letter in the word being lower-case. With no word separators, creates identifiers that look like @code 'ExampleIdentifier'.")
UpperCamelCase, UpperCamelCase,
@doc("Creates identifiers that look like: @code `exampleIdentifier`") @doc("Creates identifiers where each word begins with an upper-case letter, except the first word (which begins with a lower-case letter), with each subsequent letter in the word being lower-case. With no word separators, creates identifiers that look like @code 'exampleIdentifier'.")
LowerCamelCase, LowerCamelCase,
@doc("Creates identifiers that look like: @code `Example_Identifier`") @doc("All letters in all words are upper-case.")
UpperCase, UpperCase,
@doc("Creates identifiers that look like: @code `example_identifier`") @doc("All letters in all words are lower-case.")
LowerCase, LowerCase,
} }