diff options
author | James Dennett <jdennett@google.com> | 2012-06-17 06:43:43 +0000 |
---|---|---|
committer | James Dennett <jdennett@google.com> | 2012-06-17 06:43:43 +0000 |
commit | f977848850a2f8785dc2b37c735afe0cd223b8bb (patch) | |
tree | f1b3e25b646e49ed96113381e2ed2b4267fd515d | |
parent | 3d7e24e1887fade254cf8b304834f30de2f8d662 (diff) |
Documentation cleanup:
* For Doxygen, escaped "::std" as "\::std";
* For humans, fixed "namespaecs" to "namespaces".
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158634 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/ExprCXX.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/AST/ExprCXX.h b/include/clang/AST/ExprCXX.h index 9645c26c3c..d77722888e 100644 --- a/include/clang/AST/ExprCXX.h +++ b/include/clang/AST/ExprCXX.h @@ -2520,8 +2520,8 @@ public: /// argument-dependent lookup. bool requiresADL() const { return RequiresADL; } - /// True if namespace ::std should be artificially added to the set of - /// associated namespaecs for argument-dependent lookup purposes. + /// True if namespace \::std should be artificially added to the set of + /// associated namespaces for argument-dependent lookup purposes. bool isStdAssociatedNamespace() const { return StdIsAssociatedNamespace; } /// True if this lookup is overloaded. |