From 76324bbabb39fff0fa86a6e81c1129676b34d947 Mon Sep 17 00:00:00 2001 From: Drew Lewis Date: Tue, 30 Sep 2025 17:08:05 -0400 Subject: [PATCH] Fix typo in CodingGuidelines.txt (#307) Signed-off-by: Drew Lewis --- doc/CodingGuidelines.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/CodingGuidelines.txt b/doc/CodingGuidelines.txt index 1053ffd2..5e2d1e48 100644 --- a/doc/CodingGuidelines.txt +++ b/doc/CodingGuidelines.txt @@ -4,7 +4,7 @@ Naming conventions directory - lowercase (directory) filename - corresponding class name without prefix (Filename) class - upper camel case (ClassName) -member function - upper camel case (memberFunction) +member function - lower camel case (memberFunction) member variable - snake case with trailing underscore (member_variable_) Trailing underscore prevents conflict with accessor member function name.