diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-08-28 01:15:46 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-08-28 01:15:46 +0000 |
commit | 606ae94a5b2c75c746d3323388abf6bc44ea0d1c (patch) | |
tree | 17909fd75a153d53db177ba72cafd6107eda2724 | |
parent | a0f7d35afe89a873f03befe998a45cd77d7b7c9d (diff) | |
download | bcm5719-llvm-606ae94a5b2c75c746d3323388abf6bc44ea0d1c.tar.gz bcm5719-llvm-606ae94a5b2c75c746d3323388abf6bc44ea0d1c.zip |
Fix a -Wdocumentation warning.
llvm-svn: 162721
-rw-r--r-- | clang/include/clang/Lex/Lexer.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/include/clang/Lex/Lexer.h b/clang/include/clang/Lex/Lexer.h index c9e9f5a9fb0..08e12bd56e3 100644 --- a/clang/include/clang/Lex/Lexer.h +++ b/clang/include/clang/Lex/Lexer.h @@ -31,11 +31,11 @@ class DiagnosticBuilder; enum ConflictMarkerKind { /// Not within a conflict marker. CMK_None, - /// A normal or diff3 conflict marker, initiated by at least 7 <s, - /// separated by at least 7 =s or |s, and terminated by at least 7 >s. + /// A normal or diff3 conflict marker, initiated by at least 7 "<"s, + /// separated by at least 7 "="s or "|"s, and terminated by at least 7 ">"s. CMK_Normal, - /// A Perforce-style conflict marker, initiated by 4 >s, separated by 4 =s, - /// and terminated by 4 <s. + /// A Perforce-style conflict marker, initiated by 4 ">"s, + /// separated by 4 "="s, and terminated by 4 "<"s. CMK_Perforce }; |