diff options
author | Dinesh Dwivedi <dinesh.d@samsung.com> | 2014-05-01 17:19:34 +0000 |
---|---|---|
committer | Dinesh Dwivedi <dinesh.d@samsung.com> | 2014-05-01 17:19:34 +0000 |
commit | 0db806b7f942b8ab5495fc31cf672975642ebb10 (patch) | |
tree | 6ec909aeaafa55ae87a6f19b728a21096b439fd9 /clang/lib/Format/ContinuationIndenter.cpp | |
parent | a7c9ed57d9f55800a88389f658a648019d929e59 (diff) | |
download | bcm5719-llvm-0db806b7f942b8ab5495fc31cf672975642ebb10.tar.gz bcm5719-llvm-0db806b7f942b8ab5495fc31cf672975642ebb10.zip |
Fix typo (first commit to test commit access).
llvm-svn: 207775
Diffstat (limited to 'clang/lib/Format/ContinuationIndenter.cpp')
-rw-r--r-- | clang/lib/Format/ContinuationIndenter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Format/ContinuationIndenter.cpp b/clang/lib/Format/ContinuationIndenter.cpp index 41a42d1e60e..e3088a0f945 100644 --- a/clang/lib/Format/ContinuationIndenter.cpp +++ b/clang/lib/Format/ContinuationIndenter.cpp @@ -602,7 +602,7 @@ unsigned ContinuationIndenter::moveStateToNextToken(LineState &State, // Insert scopes created by fake parenthesis. const FormatToken *Previous = Current.getPreviousNonComment(); // Don't add extra indentation for the first fake parenthesis after - // 'return', assignements or opening <({[. The indentation for these cases + // 'return', assignments or opening <({[. The indentation for these cases // is special cased. bool SkipFirstExtraIndent = (Previous && (Previous->opensScope() || Previous->is(tok::kw_return) || |