r375434 - Fix Wdocumentation warning. NFCI.
Simon Pilgrim via cfe-commits
cfe-commits at lists.llvm.org
Mon Oct 21 10:45:18 PDT 2019
Author: rksimon
Date: Mon Oct 21 10:45:18 2019
New Revision: 375434
URL: http://llvm.org/viewvc/llvm-project?rev=375434&view=rev
Log:
Fix Wdocumentation warning. NFCI.
Modified:
cfe/trunk/include/clang/AST/ExprCXX.h
Modified: cfe/trunk/include/clang/AST/ExprCXX.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ExprCXX.h?rev=375434&r1=375433&r2=375434&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/ExprCXX.h (original)
+++ cfe/trunk/include/clang/AST/ExprCXX.h Mon Oct 21 10:45:18 2019
@@ -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.
More information about the cfe-commits
mailing list