[cfe-commits] r152547 - in /cfe/trunk: include/clang/Basic/Linkage.h lib/Basic/IdentifierTable.cpp
Nick Lewycky
nicholas at mxc.ca
Sun Mar 11 16:14:21 PDT 2012
Author: nicholas
Date: Sun Mar 11 18:14:21 2012
New Revision: 152547
URL: http://llvm.org/viewvc/llvm-project?rev=152547&view=rev
Log:
Fix typo in comment, 'langauge' -> 'language'.
Modified:
cfe/trunk/include/clang/Basic/Linkage.h
cfe/trunk/lib/Basic/IdentifierTable.cpp
Modified: cfe/trunk/include/clang/Basic/Linkage.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/Linkage.h?rev=152547&r1=152546&r2=152547&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/Linkage.h (original)
+++ cfe/trunk/include/clang/Basic/Linkage.h Sun Mar 11 18:14:21 2012
@@ -29,7 +29,7 @@
InternalLinkage,
/// \brief External linkage within a unique namespace. From the
- /// langauge perspective, these entities have external
+ /// language perspective, these entities have external
/// linkage. However, since they reside in an anonymous namespace,
/// their names are unique to this translation unit, which is
/// equivalent to having internal linkage from the code-generation
Modified: cfe/trunk/lib/Basic/IdentifierTable.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Basic/IdentifierTable.cpp?rev=152547&r1=152546&r2=152547&view=diff
==============================================================================
--- cfe/trunk/lib/Basic/IdentifierTable.cpp (original)
+++ cfe/trunk/lib/Basic/IdentifierTable.cpp Sun Mar 11 18:14:21 2012
@@ -113,7 +113,7 @@
///
/// The C90/C99/CPP/CPP0x flags are set to 3 if the token is a keyword in a
/// future language standard, set to 2 if the token should be enabled in the
-/// specified langauge, set to 1 if it is an extension in the specified
+/// specified language, set to 1 if it is an extension in the specified
/// language, and set to 0 if disabled in the specified language.
static void AddKeyword(StringRef Keyword,
tok::TokenKind TokenCode, unsigned Flags,
More information about the cfe-commits
mailing list