From: Rafael Espindola Date: Fri, 4 Jan 2013 20:41:40 +0000 (+0000) Subject: Fix typo. Thanks to dgregor for noticing it. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b721f52655bc75f8b9d5dcc761298829d5a7c8e;p=clang Fix typo. Thanks to dgregor for noticing it. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171521 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/Decl.cpp b/lib/AST/Decl.cpp index 9171174907..0a9fc2f5af 100644 --- a/lib/AST/Decl.cpp +++ b/lib/AST/Decl.cpp @@ -1180,7 +1180,7 @@ SourceRange VarDecl::getSourceRange() const { template 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;