summaryrefslogtreecommitdiff
path: root/docs/design/coding-conventions.md
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2024-11-29 14:02:19 +0700
committerGitHub <noreply@github.com>2024-11-29 15:02:19 +0800
commitc3557978cf0184aaf75c27c309bc87e84fd6ab79 (patch)
treee7372839055ca3a7f2ad7b3aa7c895e428778533 /docs/design/coding-conventions.md
parent71f97268789164bd77614636536172ba657c6a57 (diff)
docs: Reduce typo count (#5671)
Co-authored-by: Ellie Hermaszewska <ellieh@nvidia.com>
Diffstat (limited to 'docs/design/coding-conventions.md')
-rw-r--r--docs/design/coding-conventions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/design/coding-conventions.md b/docs/design/coding-conventions.md
index 4223bee93..bc540783a 100644
--- a/docs/design/coding-conventions.md
+++ b/docs/design/coding-conventions.md
@@ -237,7 +237,7 @@ enum
Note that the type name reflects the plural case, while the cases that represent individual bits are named with a singular prefix.
-In public APIs, all `enum`s should use the style of separating the type defintion from the `enum`, and all cases should use `SCREAMING_SNAKE_CASE`:
+In public APIs, all `enum`s should use the style of separating the type definition from the `enum`, and all cases should use `SCREAMING_SNAKE_CASE`:
```c++
typedef unsigned int SlangAxes;