From: Simon Pilgrim Date: Mon, 21 Oct 2019 17:45:18 +0000 (+0000) Subject: Fix Wdocumentation warning. NFCI. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9aba456184c590881029c3cca0d06c03480abf5e;p=clang 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 7b7ca9bf8f..2152e108c7 100644 --- a/include/clang/AST/ExprCXX.h +++ b/include/clang/AST/ExprCXX.h @@ -262,8 +262,8 @@ public: /// - a != b -> !(a == b) /// - a != b -> !(b == a) /// - For \c \@ in \c <, \c <=, \c >, \c >=, \c <=>: -/// - a @ b -> (a <=> b) @ 0 -/// - a @ b -> 0 @ (b <=> a) +/// - a @ b -> (a <=> b) @ 0 +/// - a @ b -> 0 @ (b <=> a) /// /// This expression provides access to both the original syntax and the /// rewritten expression.