From 205bcd0d54e55ff746dfd25b45dfac22866c8b1d Mon Sep 17 00:00:00 2001 From: Jan Korous Date: Thu, 2 Nov 2017 12:15:51 +0000 Subject: [PATCH] Fix typo in class annotation llvm-svn: 317200 --- clang/include/clang/AST/NestedNameSpecifier.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/AST/NestedNameSpecifier.h b/clang/include/clang/AST/NestedNameSpecifier.h index b1ff9bdff589..29862ba4161e 100644 --- a/clang/include/clang/AST/NestedNameSpecifier.h +++ b/clang/include/clang/AST/NestedNameSpecifier.h @@ -35,7 +35,7 @@ class LangOptions; /// "\::std::vector::". /// /// 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 ('::').