aboutsummaryrefslogtreecommitdiff
path: root/lib/ARCMigrate/TransBlockObjCVariable.cpp
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2012-07-23 08:59:39 +0000
committerSylvestre Ledru <sylvestre@debian.org>2012-07-23 08:59:39 +0000
commitbed28ac1d1463adca3ecf24fca5c30646fa9dbb2 (patch)
treebd243306b2d80786815cd4f5b2dea67c212071ba /lib/ARCMigrate/TransBlockObjCVariable.cpp
parenteab9d6f9065b042d39fbaf9842c9d8cc968dd6d0 (diff)
Fix a typo (the the => the)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160622 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ARCMigrate/TransBlockObjCVariable.cpp')
-rw-r--r--lib/ARCMigrate/TransBlockObjCVariable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ARCMigrate/TransBlockObjCVariable.cpp b/lib/ARCMigrate/TransBlockObjCVariable.cpp
index ec233ba5e1..2a79c9aeff 100644
--- a/lib/ARCMigrate/TransBlockObjCVariable.cpp
+++ b/lib/ARCMigrate/TransBlockObjCVariable.cpp
@@ -9,7 +9,7 @@
//
// rewriteBlockObjCVariable:
//
-// Adding __block to an obj-c variable could be either because the the variable
+// Adding __block to an obj-c variable could be either because the variable
// is used for output storage or the user wanted to break a retain cycle.
// This transformation checks whether a reference of the variable for the block
// is actually needed (it is assigned to or its address is taken) or not.