diff options
Diffstat (limited to 'clang/lib/Format')
| -rw-r--r-- | clang/lib/Format/Format.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Format/Format.cpp b/clang/lib/Format/Format.cpp index de870900b41..94119325410 100644 --- a/clang/lib/Format/Format.cpp +++ b/clang/lib/Format/Format.cpp @@ -190,7 +190,7 @@ static bool fitsIntoLimit(const AnnotatedToken &RootToken, unsigned Limit) { /// \brief Returns if a token is an Objective-C selector name. /// -/// For example, "bar" is a selector name in [foo bar:(4 + 5)] +/// For example, "bar" is a selector name in [foo bar:(4 + 5)]. static bool isObjCSelectorName(const AnnotatedToken &Tok) { return Tok.is(tok::identifier) && !Tok.Children.empty() && Tok.Children[0].is(tok::colon) && |

