[clang] 90d2291 - [NFC] Fix comment.
Clement Courbet via cfe-commits
cfe-commits at lists.llvm.org
Tue Feb 8 00:44:33 PST 2022
Author: Clement Courbet
Date: 2022-02-08T09:42:44+01:00
New Revision: 90d2291fbb4a382d8a36dfbb2bcfcc55f21b2bdc
URL: https://github.com/llvm/llvm-project/commit/90d2291fbb4a382d8a36dfbb2bcfcc55f21b2bdc
DIFF: https://github.com/llvm/llvm-project/commit/90d2291fbb4a382d8a36dfbb2bcfcc55f21b2bdc.diff
LOG: [NFC] Fix comment.
The extra space causes the table to render incorrectly in doxygen.
Added:
Modified:
clang/include/clang/Basic/Lambda.h
Removed:
################################################################################
diff --git a/clang/include/clang/Basic/Lambda.h b/clang/include/clang/Basic/Lambda.h
index 853821a33c2ad..de01d6f33c015 100644
--- a/clang/include/clang/Basic/Lambda.h
+++ b/clang/include/clang/Basic/Lambda.h
@@ -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
More information about the cfe-commits
mailing list