summaryrefslogtreecommitdiffstats
path: root/docs/design/coding-conventions.md
diff options
context:
space:
mode:
authorAnders Leino <aleino@nvidia.com>2024-06-10 15:15:02 +0300
committerGitHub <noreply@github.com>2024-06-10 05:15:02 -0700
commit0974463daf0982626cb2b8c8bb6f494f3e6c9e52 (patch)
treeed60c4a010edd13f310f0c170f2f82bd8b5a4329 /docs/design/coding-conventions.md
parent9a23a9aab3721828526c921db1e779008e133e8f (diff)
Fix typos in the docs (#4322)
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