Skip to content

Commit 07bfbae

Browse files
author
Michael Blome
committed
updated per GH 291
1 parent 7307b17 commit 07bfbae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/cpp/identifiers-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ int main() {
9090

9191
Identifiers cannot be exactly the same spelling and case as keywords. Identifiers that contain keywords are legal. For example, `Pint` is a legal identifier, even though it contains **int**, which is a keyword.
9292

93-
Use of two sequential underscore characters ( **__** ) at the beginning of an identifier, or a single leading underscore followed by a capital letter, is reserved for C++ implementations in all scopes. You should avoid using one leading underscore followed by a lowercase letter for names with file scope because of possible conflicts with current or future reserved identifiers.
93+
Use of two sequential underscore characters ( **__** ) in an identifier, or a single leading underscore followed by a capital letter, is reserved for C++ implementations in all scopes. You should avoid using one leading underscore followed by a lowercase letter for names with file scope because of possible conflicts with current or future reserved identifiers.
9494

9595
## See Also
9696
[Lexical Conventions](../cpp/lexical-conventions.md)

0 commit comments

Comments
 (0)