Fix typo. Thanks to dgregor for noticing it.
llvm-svn: 171521
diff --git a/clang/lib/AST/Decl.cpp b/clang/lib/AST/Decl.cpp
index 9171174..0a9fc2f 100644
--- a/clang/lib/AST/Decl.cpp
+++ b/clang/lib/AST/Decl.cpp
@@ -1180,7 +1180,7 @@
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;