aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/Decl.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-01-04 20:41:40 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-01-04 20:41:40 +0000
commit2b721f52655bc75f8b9d5dcc761298829d5a7c8e (patch)
treeed7f7b0d133073a1d60fc170aa89c51fc162228e /lib/AST/Decl.cpp
parentc792d6d0b39cd6926be28ccb925992204d1af0e1 (diff)
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
Diffstat (limited to 'lib/AST/Decl.cpp')
-rw-r--r--lib/AST/Decl.cpp2
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;