Fix Wdocumentation warning. NFCI. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@375434 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/clang/AST/ExprCXX.h b/include/clang/AST/ExprCXX.h index 7b7ca9b..2152e10 100644 --- a/include/clang/AST/ExprCXX.h +++ b/include/clang/AST/ExprCXX.h
@@ -262,8 +262,8 @@ /// - <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.