diff options
| -rw-r--r-- | docs/cpp-code-standards.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/cpp-code-standards.md b/docs/cpp-code-standards.md index 46102b3..2862d87 100644 --- a/docs/cpp-code-standards.md +++ b/docs/cpp-code-standards.md @@ -234,8 +234,9 @@ References are defined in a similar way (& must be stuck to the type) Creature& creature; ``` -Never define Creature\* me; in a creature script! -'me' is the pointer to the scripted creature. +Never define "me" in a creature or object script! + +'me' is the pointer to the scripted creature or object. ### Defining const variables |
