From b8e5264771bc96af49c8085e31d81c9ddbed921d Mon Sep 17 00:00:00 2001 From: Jordy Ampe <33500507+JordyGit@users.noreply.github.com> Date: Mon, 14 Sep 2026 16:05:06 +0200 Subject: [PATCH] Fix formatting for identifier naming styles To avoid confusion, this is a list showing all the styles, not ordering them. --- content/programming-guides/style.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/programming-guides/style.md b/content/programming-guides/style.md index 9406632c..321b86e3 100644 --- a/content/programming-guides/style.md +++ b/content/programming-guides/style.md @@ -36,17 +36,17 @@ All files should be ordered in the following manner: Protobuf identifiers use one of the following naming styles: -1. TitleCase +- TitleCase * Contains uppercase letters, lowercase letters, and numbers * The initial character is an uppercase letter * The initial letter of each word is capitalized -1. lower_snake_case +- lower_snake_case * Contains lowercase letters, underscores, and numbers * Words are separated by a single underscore -1. UPPER_SNAKE_CASE +- UPPER_SNAKE_CASE * Contains uppercase letters, underscores, and numbers * Words are separated by a single underscore -1. camelCase +- camelCase * Contains uppercase letters, lowercase letters, and numbers * The initial character is an lowercase letter * The initial letter of each subsequent word is capitalized