diff options
author | howie-f <rftc@gmx.de> | 2020-05-29 22:18:44 +0200 |
---|---|---|
committer | howie-f <rftc@gmx.de> | 2020-05-29 22:36:56 +0200 |
commit | 6d309462f727c4d63c153d7965c91605bf3a91b7 (patch) | |
tree | 83b6ebc2180bfefabee3a74d06910f4921e0f539 /docs/CODE_GUIDELINES.md | |
parent | 944a94a482a064ae53743eb891cf6f01fb22b19e (diff) |
[docs] fix typo CODE_GUIDELINES.md
Diffstat (limited to 'docs/CODE_GUIDELINES.md')
-rw-r--r-- | docs/CODE_GUIDELINES.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/CODE_GUIDELINES.md b/docs/CODE_GUIDELINES.md index 0064f121b8..85e6495e2d 100644 --- a/docs/CODE_GUIDELINES.md +++ b/docs/CODE_GUIDELINES.md @@ -44,7 +44,7 @@ * [11.3. Overriding virtual functions](#113-overriding-virtual-functions) * [11.4. Default member initialization](#114-default-member-initialization) * [11.5. Destructors in interfaces](#115-destructors-in-interfaces) - * [11.6. Constructor Initialzation Lists](#116-constructor-initialzation-lists) + * [11.6. Constructor Initialization Lists](#116-constructor-initialization-lists) * [12. Other conventions](#12-other-conventions) * [12.1. Output parameters](#121-output-parameters) * [12.2. Casts](#122-casts) @@ -653,7 +653,7 @@ class Foo A class with any virtual functions should have a destructor that is either public and virtual or else protected and non-virtual (cf. [ISO C++ guidelines](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-dtor-virtual)). -### 11.6. Constructor Initialzation Lists +### 11.6. Constructor Initialization Lists For lines up to [line length](#line-length) everything stays on one line, excluding the braces which must be on the following lines. |