diff options
author | Scott Antipa <scottantipa@gmail.com> | 2021-06-04 00:22:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-04 08:22:41 +0100 |
commit | 7dab58ac3b82970f9ede959a45c67ae31f8f9832 (patch) | |
tree | 848d5d3059b6dd6ffc0153f38902473eb02433bf /Documentation | |
parent | 2dfd95767ab77e4090d7cbb46eb96f1ba6e1b771 (diff) | |
download | serenity-7dab58ac3b82970f9ede959a45c67ae31f8f9832.zip |
Documentation: Fix a typo by removing an extra word
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/CodingStyle.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/CodingStyle.md b/Documentation/CodingStyle.md index 8e12d9d7e9..96f4b2601f 100644 --- a/Documentation/CodingStyle.md +++ b/Documentation/CodingStyle.md @@ -118,7 +118,7 @@ bool convert_to_ascii(short*, size_t); bool to_ascii(short*, size_t); ``` -[](#names-if-exists) When there are two getters for a variable, and one of them automatically makes sure the requested object is instantiated, prefix that getter function which with `ensure_`. As it ensures that an object is created, it should consequently also return a reference, not a pointer. +[](#names-if-exists) When there are two getters for a variable, and one of them automatically makes sure the requested object is instantiated, prefix that getter function with `ensure_`. As it ensures that an object is created, it should consequently also return a reference, not a pointer. ###### Right: |