summaryrefslogtreecommitdiff
path: root/docs/design/coding-conventions.md
diff options
context:
space:
mode:
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 f730a25d5..95d2a42ae 100644
--- a/docs/design/coding-conventions.md
+++ b/docs/design/coding-conventions.md
@@ -31,7 +31,7 @@ As a general rule, be skeptical of "modern C++" ideas unless they are clearly be
We are not quite in the realm of "Orthodox C++", but some of the same guidelines apply:
* Don't use exceptions for non-fatal errors (and even then support a build flag to opt out of exceptions)
-* Don't the built-in C++ RTTI system (home-grown is okay)
+* Don't use the built-in C++ RTTI system (home-grown is okay)
* Don't use the C++ variants of C headers (e.g., `<cstdio>` instead of `<stdio.h>`)
* Don't use the STL containers
* Don't use iostreams