Commit b9427ca4 authored by Gennadiy Civil's avatar Gennadiy Civil Committed by GitHub
Browse files

Merge pull request #1143 from nyibbang/patch-1

Fixes a typo in FAQ.md
parents 7c3496c4 4568374a
...@@ -54,7 +54,7 @@ Underscore (`_`) is special, as C++ reserves the following to be used by ...@@ -54,7 +54,7 @@ Underscore (`_`) is special, as C++ reserves the following to be used by
the compiler and the standard library: the compiler and the standard library:
1. any identifier that starts with an `_` followed by an upper-case letter, and 1. any identifier that starts with an `_` followed by an upper-case letter, and
1. any identifier that containers two consecutive underscores (i.e. `__`) _anywhere_ in its name. 1. any identifier that contains two consecutive underscores (i.e. `__`) _anywhere_ in its name.
User code is _prohibited_ from using such identifiers. User code is _prohibited_ from using such identifiers.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment