summaryrefslogtreecommitdiff
path: root/docs/coding_guidelines.md
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2025-03-12 21:46:02 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2025-03-12 21:46:02 -0400
commitf5e7395ddd1ddb0b4f40750455b6dfea5c8f4e20 (patch)
treeaabc556f440d76312b3d636497a6454ae1a258ba /docs/coding_guidelines.md
parent5a5019589e6a3dfee525488ef0196964677a9040 (diff)
Fix wording
Diffstat (limited to 'docs/coding_guidelines.md')
-rw-r--r--docs/coding_guidelines.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/coding_guidelines.md b/docs/coding_guidelines.md
index b3a6b019..b9006658 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`.