[NFC] Fix comment.
authorClement Courbet <courbet@google.com>
Tue, 8 Feb 2022 08:42:44 +0000 (09:42 +0100)
committerClement Courbet <courbet@google.com>
Tue, 8 Feb 2022 08:42:44 +0000 (09:42 +0100)
The extra space causes the table to render incorrectly in doxygen.

clang/include/clang/Basic/Lambda.h

index 853821a..de01d6f 100644 (file)
@@ -32,7 +32,7 @@ enum LambdaCaptureDefault {
 /// is an expression.
 enum LambdaCaptureKind {
   LCK_This,   ///< Capturing the \c *this object by reference
-  LCK_StarThis, /// < Capturing the \c *this object by copy
+  LCK_StarThis, ///< Capturing the \c *this object by copy
   LCK_ByCopy, ///< Capturing by copy (a.k.a., by value)
   LCK_ByRef,  ///< Capturing by reference
   LCK_VLAType ///< Capturing variable-length array type