From: Nico Weber Date: Tue, 25 Jun 2013 19:25:12 +0000 (+0000) Subject: Fix a comment. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e5a8887ff30957f4bf59cc91965e7a620dbf34a;p=clang Fix a comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184873 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Format/FormatToken.h b/lib/Format/FormatToken.h index ad13150d53..58cec43f10 100644 --- a/lib/Format/FormatToken.h +++ b/lib/Format/FormatToken.h @@ -214,7 +214,7 @@ struct FormatToken { Type == TT_TemplateOpener; } - /// \brief Returns whether \p Tok is )]} or a template opening >. + /// \brief Returns whether \p Tok is )]} or a template closing >. bool closesScope() const { return isOneOf(tok::r_paren, tok::r_brace, tok::r_square) || Type == TT_TemplateCloser;