From 2b721f52655bc75f8b9d5dcc761298829d5a7c8e Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Fri, 4 Jan 2013 20:41:40 +0000 Subject: [PATCH] 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 --- lib/AST/Decl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.40.0