diff options
author | Eric Christopher <echristo@gmail.com> | 2015-06-19 01:52:53 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-06-19 01:52:53 +0000 |
commit | 2c4555ad1b6e60c79318350fa54cca78e2288967 (patch) | |
tree | ca629cdbb56735a8869001304d07119be5d22548 /clang/lib/Format | |
parent | 6708c4a1767d44a4d25938b07f8f144a906fb411 (diff) | |
download | bcm5719-llvm-2c4555ad1b6e60c79318350fa54cca78e2288967.tar.gz bcm5719-llvm-2c4555ad1b6e60c79318350fa54cca78e2288967.zip |
Fix "the the" in comments/documentation/etc.
llvm-svn: 240110
Diffstat (limited to 'clang/lib/Format')
-rw-r--r-- | clang/lib/Format/TokenAnnotator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Format/TokenAnnotator.cpp b/clang/lib/Format/TokenAnnotator.cpp index 985f59e5ee1..8d08c3d2622 100644 --- a/clang/lib/Format/TokenAnnotator.cpp +++ b/clang/lib/Format/TokenAnnotator.cpp @@ -255,7 +255,7 @@ private: // A '[' could be an index subscript (after an identifier or after // ')' or ']'), it could be the start of an Objective-C method - // expression, or it could the the start of an Objective-C array literal. + // expression, or it could the start of an Objective-C array literal. FormatToken *Left = CurrentToken->Previous; Left->ParentBracket = Contexts.back().ContextKind; FormatToken *Parent = Left->getPreviousNonComment(); |