From 1f9fd7d1668ea27bfc47c7409f48b37a5bf8a081 Mon Sep 17 00:00:00 2001 From: Ryan Fleury Date: Fri, 5 Nov 2021 13:57:24 -0600 Subject: [PATCH] [docs] fix incorrect identifier style docs --- docs/metadesk_reference.mdesk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/metadesk_reference.mdesk b/docs/metadesk_reference.mdesk index 19561c1..289592d 100644 --- a/docs/metadesk_reference.mdesk +++ b/docs/metadesk_reference.mdesk @@ -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, }