@@ -651,9 +651,9 @@ struct FormatStyle {
651651 // / \version 3.7
652652 TrailingCommentsAlignmentStyle AlignTrailingComments;
653653
654- // / \brief If a function call or braced initializer list doesn't fit on a
655- // / line, allow putting all arguments onto the next line, even if
656- // / ``BinPackArguments`` is `` false``.
654+ // / If a function call or braced initializer list doesn't fit on a line, allow
655+ // / putting all arguments onto the next line, even if ``BinPackArguments`` is
656+ // / ``false``.
657657 // / \code
658658 // / true:
659659 // / callFunction(
@@ -3956,7 +3956,7 @@ struct FormatStyle {
39563956 // / \version 6
39573957 std::vector<RawStringFormat> RawStringFormats;
39583958
3959- // / \brief The ``&`` and ``&&`` alignment style.
3959+ // / The ``&`` and ``&&`` alignment style.
39603960 enum ReferenceAlignmentStyle : int8_t {
39613961 // / Align reference like ``PointerAlignment``.
39623962 RAS_Pointer,
@@ -3977,13 +3977,12 @@ struct FormatStyle {
39773977 RAS_Middle
39783978 };
39793979
3980- // / \brief Reference alignment style (overrides ``PointerAlignment`` for
3981- // / references).
3980+ // / Reference alignment style (overrides ``PointerAlignment`` for references).
39823981 // / \version 13
39833982 ReferenceAlignmentStyle ReferenceAlignment;
39843983
39853984 // clang-format off
3986- // / \brief Types of comment reflow style.
3985+ // / Types of comment reflow style.
39873986 enum ReflowCommentsStyle : int8_t {
39883987 // / Leave comments untouched.
39893988 // / \code
@@ -4016,7 +4015,7 @@ struct FormatStyle {
40164015 };
40174016 // clang-format on
40184017
4019- // / \brief Comment reformatting style.
4018+ // / Comment reformatting style.
40204019 // / \version 3.8
40214020 ReflowCommentsStyle ReflowComments;
40224021
@@ -4151,9 +4150,8 @@ struct FormatStyle {
41514150 // / \version 16
41524151 bool RemoveSemicolon;
41534152
4154- // / \brief The possible positions for the requires clause. The
4155- // / ``IndentRequires`` option is only used if the ``requires`` is put on the
4156- // / start of a line.
4153+ // / The possible positions for the requires clause. The ``IndentRequires``
4154+ // / option is only used if the ``requires`` is put on the start of a line.
41574155 enum RequiresClausePositionStyle : int8_t {
41584156 // / Always put the ``requires`` clause on its own line (possibly followed by
41594157 // / a semicolon).
@@ -4251,7 +4249,7 @@ struct FormatStyle {
42514249 RCPS_SingleLine,
42524250 };
42534251
4254- // / \brief The position of the ``requires`` clause.
4252+ // / The position of the ``requires`` clause.
42554253 // / \version 15
42564254 RequiresClausePositionStyle RequiresClausePosition;
42574255
@@ -4281,7 +4279,7 @@ struct FormatStyle {
42814279 // / \version 16
42824280 RequiresExpressionIndentationKind RequiresExpressionIndentation;
42834281
4284- // / \brief The style if definition blocks should be separated.
4282+ // / The style if definition blocks should be separated.
42854283 enum SeparateDefinitionStyle : int8_t {
42864284 // / Leave definition blocks as they are.
42874285 SDS_Leave,
@@ -5188,8 +5186,8 @@ struct FormatStyle {
51885186 // / \version 17
51895187 std::vector<std::string> TypeNames;
51905188
5191- // / \brief A vector of macros that should be interpreted as type declarations
5192- // / instead of as function calls.
5189+ // / A vector of macros that should be interpreted as type declarations instead
5190+ // / of as function calls.
51935191 // /
51945192 // / These are expected to be macros of the form:
51955193 // / \code
0 commit comments