]> granicus.if.org Git - clang/commitdiff
Fix typo. Thanks to dgregor for noticing it.
authorRafael Espindola <rafael.espindola@gmail.com>
Fri, 4 Jan 2013 20:41:40 +0000 (20:41 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Fri, 4 Jan 2013 20:41:40 +0000 (20:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171521 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/Decl.cpp

index 91711749071e402057ef061042767239613db0c0..0a9fc2f5afc98357f6f31cabbd5c09645bb08d5b 100644 (file)
@@ -1180,7 +1180,7 @@ SourceRange VarDecl::getSourceRange() const {
 template<typename decl_type>
 static bool hasCLanguageLinkageTemplate(const decl_type &D) {
   // Language linkage is a C++ concept, but saying that everything in C has
-  // C language linkage fits the implementation nicelly.
+  // C language linkage fits the implementation nicely.
   ASTContext &Context = D.getASTContext();
   if (!Context.getLangOpts().CPlusPlus)
     return true;