@@ -139,7 +139,7 @@ wording a diagnostic.
139139 you mean %1? ``.
140140
141141* Appropriately capitalize proper nouns like ``Clang ``, ``OpenCL ``, ``GCC ``,
142- ``Objective-C ``, etc and language standard versions like ``C11 `` or ``C++11 ``.
142+ ``Objective-C ``, etc. and language standard versions like ``C11 `` or ``C++11 ``.
143143* The wording should be succinct. If necessary, use a semicolon to combine
144144 sentence fragments instead of using complete sentences. e.g., prefer wording
145145 like ``'%0' is deprecated; it will be removed in a future release of Clang ``
@@ -886,7 +886,7 @@ a string that the tablegen backend uses as a prefix to the
886886 LANG_OPTION_WITH_MARSHALLING([...], LangOpts->IgnoreExceptions, [...])
887887 #endif // LANG_OPTION_WITH_MARSHALLING
888888
889- Such definition can be used used in the function for parsing and generating
889+ Such definition can be used in the function for parsing and generating
890890command line:
891891
892892.. code-block :: c++
@@ -1745,7 +1745,7 @@ will be found by the lookup, since it effectively replaces the first
17451745declaration of "``f ``".
17461746
17471747(Note that because ``f `` can be redeclared at block scope, or in a friend
1748- declaration, etc. it is possible that the declaration of ``f `` found by name
1748+ declaration, etc., it is possible that the declaration of ``f `` found by name
17491749lookup will not be the most recent one.)
17501750
17511751In the semantics-centric view, overloading of functions is represented
@@ -1945,7 +1945,7 @@ range of iterators over declarations of "``f``".
19451945function ``DeclContext::getPrimaryContext `` retrieves the "primary" context for
19461946a given ``DeclContext `` instance, which is the ``DeclContext `` responsible for
19471947maintaining the lookup table used for the semantics-centric view. Given a
1948- DeclContext, one can obtain the set of declaration contexts that are
1948+ `` DeclContext `` , one can obtain the set of declaration contexts that are
19491949semantically connected to this declaration context, in source order, including
19501950this context (which will be the only result, for non-namespace contexts) via
19511951``DeclContext::collectAllContexts ``. Note that these functions are used
@@ -1985,7 +1985,7 @@ broken code in the AST:
19851985 errors, the Decl node is marked as invalid.
19861986- dropping invalid node: this often happens for errors that we don’t have
19871987 graceful recovery. Prior to Recovery AST, a mismatched-argument function call
1988- expression was dropped though a CallExpr was created for semantic analysis.
1988+ expression was dropped though a `` CallExpr `` was created for semantic analysis.
19891989
19901990With these strategies, clang surfaces better diagnostics, and provides AST
19911991consumers a rich AST reflecting the written source code as much as possible even
0 commit comments