mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-12 23:51:37 -07:00
[docs] fix incorrect identifier style docs
This commit is contained in:
@@ -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.")
|
||||
@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,
|
||||
@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,
|
||||
@doc("Creates identifiers that look like: @code `Example_Identifier`")
|
||||
@doc("All letters in all words are upper-case.")
|
||||
UpperCase,
|
||||
@doc("Creates identifiers that look like: @code `example_identifier`")
|
||||
@doc("All letters in all words are lower-case.")
|
||||
LowerCase,
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user