Skip to content

Commit 67854aa

Browse files
committed
Fix Wdocumentation warning. NFCI.
llvm-svn: 375434
1 parent ffd87cb commit 67854aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/include/clang/AST/ExprCXX.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,8 @@ class CUDAKernelCallExpr final : public CallExpr {
262262
/// - <tt>a != b</tt> -> <tt>!(a == b)</tt>
263263
/// - <tt>a != b</tt> -> <tt>!(b == a)</tt>
264264
/// - For \c \@ in \c <, \c <=, \c >, \c >=, \c <=>:
265-
/// - <tt>a @ b<tt> -> <tt>(a <=> b) @ 0</tt>
266-
/// - <tt>a @ b<tt> -> <tt>0 @ (b <=> a)</tt>
265+
/// - <tt>a @ b</tt> -> <tt>(a <=> b) @ 0</tt>
266+
/// - <tt>a @ b</tt> -> <tt>0 @ (b <=> a)</tt>
267267
///
268268
/// This expression provides access to both the original syntax and the
269269
/// rewritten expression.

0 commit comments

Comments
 (0)