summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2019-10-21 17:45:18 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2019-10-21 17:45:18 +0000
commit9aba456184c590881029c3cca0d06c03480abf5e (patch)
tree5b288c19494c5d2524d3ad612017c3b51125854a
parent14947e8df1c27d3babf2c01b53c0c2bf2bfb9bd1 (diff)
downloadclang-9aba456184c590881029c3cca0d06c03480abf5e.tar.gz
Fix Wdocumentation warning. NFCI.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@375434 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/ExprCXX.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/AST/ExprCXX.h b/include/clang/AST/ExprCXX.h
index 7b7ca9bf8f..2152e108c7 100644
--- a/include/clang/AST/ExprCXX.h
+++ b/include/clang/AST/ExprCXX.h
@@ -262,8 +262,8 @@ public:
/// - <tt>a != b</tt> -> <tt>!(a == b)</tt>
/// - <tt>a != b</tt> -> <tt>!(b == a)</tt>
/// - For \c \@ in \c <, \c <=, \c >, \c >=, \c <=>:
-/// - <tt>a @ b<tt> -> <tt>(a <=> b) @ 0</tt>
-/// - <tt>a @ b<tt> -> <tt>0 @ (b <=> a)</tt>
+/// - <tt>a @ b</tt> -> <tt>(a <=> b) @ 0</tt>
+/// - <tt>a @ b</tt> -> <tt>0 @ (b <=> a)</tt>
///
/// This expression provides access to both the original syntax and the
/// rewritten expression.