summaryrefslogtreecommitdiffstats
path: root/clang/lib/Index/Entity.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-04-15 05:22:18 +0000
committerChris Lattner <sabre@nondot.org>2011-04-15 05:22:18 +0000
commit57540c5be0c31cc91cc608462954bdd7cf8a44e7 (patch)
treee7e0d92899935d210ba57ca6c430bb733ceccb58 /clang/lib/Index/Entity.cpp
parent0ab5e2cdedba59b4f81152d72d70e1796f796834 (diff)
downloadbcm5719-llvm-57540c5be0c31cc91cc608462954bdd7cf8a44e7.tar.gz
bcm5719-llvm-57540c5be0c31cc91cc608462954bdd7cf8a44e7.zip
fix a bunch of comment typos found by codespell. Patch by
Luis Felipe Strano Moraes! llvm-svn: 129559
Diffstat (limited to 'clang/lib/Index/Entity.cpp')
-rw-r--r--clang/lib/Index/Entity.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Index/Entity.cpp b/clang/lib/Index/Entity.cpp
index 749dcc89932..afac05c4137 100644
--- a/clang/lib/Index/Entity.cpp
+++ b/clang/lib/Index/Entity.cpp
@@ -141,7 +141,7 @@ Entity EntityGetter::VisitVarDecl(VarDecl *D) {
}
Entity EntityGetter::VisitFunctionDecl(FunctionDecl *D) {
- // If it's static it cannot be refered to by another translation unit.
+ // If it's static it cannot be referred to by another translation unit.
if (D->getStorageClass() == SC_Static)
return Entity(D);
OpenPOWER on IntegriCloud