diff options
author | Jan Korous <jkorous@apple.com> | 2017-11-02 12:15:51 +0000 |
---|---|---|
committer | Jan Korous <jkorous@apple.com> | 2017-11-02 12:15:51 +0000 |
commit | 205bcd0d54e55ff746dfd25b45dfac22866c8b1d (patch) | |
tree | 6390633c9260ebdcee7de673eb865344c18896d9 /clang | |
parent | 66d2c269dc153c36cb35898082a38eb47bbb4ce0 (diff) | |
download | bcm5719-llvm-205bcd0d54e55ff746dfd25b45dfac22866c8b1d.tar.gz bcm5719-llvm-205bcd0d54e55ff746dfd25b45dfac22866c8b1d.zip |
Fix typo in class annotation
llvm-svn: 317200
Diffstat (limited to 'clang')
-rw-r--r-- | clang/include/clang/AST/NestedNameSpecifier.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/AST/NestedNameSpecifier.h b/clang/include/clang/AST/NestedNameSpecifier.h index b1ff9bdff58..29862ba4161 100644 --- a/clang/include/clang/AST/NestedNameSpecifier.h +++ b/clang/include/clang/AST/NestedNameSpecifier.h @@ -35,7 +35,7 @@ class LangOptions; /// "\::std::vector<int>::". /// /// C++ nested name specifiers are the prefixes to qualified -/// namespaces. For example, "foo::" in "foo::x" is a nested name +/// names. For example, "foo::" in "foo::x" is a nested name /// specifier. Nested name specifiers are made up of a sequence of /// specifiers, each of which can be a namespace, type, identifier /// (for dependent names), decltype specifier, or the global specifier ('::'). |