From f5e7395ddd1ddb0b4f40750455b6dfea5c8f4e20 Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Wed, 12 Mar 2025 21:46:02 -0400 Subject: [PATCH] Fix wording --- docs/coding_guidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/coding_guidelines.md b/docs/coding_guidelines.md index b3a6b019e..b90066587 100644 --- a/docs/coding_guidelines.md +++ b/docs/coding_guidelines.md @@ -85,7 +85,7 @@ Static variables are prefixed with `l_`, while global variables are prefixed wit ## Use the official names where possible -If a class has a getter function (whether it's an inline or not) that returns a member variable, you should generally name it as indicated by the inline. +If a class has a getter function (whether it's an inline or not) that returns a member variable, you should generally name the member as indicated by its getter. For example: `getChainCnt()` would return `mChainCnt`.