diff options
Diffstat (limited to 'lib/AST/Decl.cpp')
-rw-r--r-- | lib/AST/Decl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<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; |