Fix Wdocumentation warning. NFCI.

llvm-svn: 375434
This commit is contained in:
Simon Pilgrim 2019-10-21 17:45:18 +00:00
parent ffd87cb46a
commit 67854aa33d
1 changed files with 2 additions and 2 deletions

View File

@ -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.