================
@@ -3275,9 +3275,15 @@ struct FormatStyle {
/// Hex: -1
/// \endcode
///
- /// You can also specify a minimum number of digits (``BinaryMinDigits``,
- /// ``DecimalMinDigits``, and ``HexMinDigits``) the integer literal must
- /// have in order for the separators to be inserted.
+ /// You can also specify a minimum number of digits
+ /// (``BinaryMinDigitsInsert``, ``DecimalMinDigitsInsert``, and
+ /// ``HexMinDigitsInsert``) the integer literal must have in order for the
+ /// separators to be inserted, and a maximum number of digits
+ /// (``BinaryMaxDigitsRemove``, ``DecimalMaxDigitsRemove``, and
+ /// ``HexMaxDigitsRemove``) until the separators are removed. This divides
the
+ /// literals in 3 regions, always without separator (up until including
+ /// ``xxxMaxDigitsRemove``), maybe with, or without separators (up until
+ /// excluding ``xxxMinDigitsInsert``), and finally always with separators.
----------------
owenca wrote:
```suggestion
/// excluding ``xxxMinDigitsInsert``), and finally always with separators.
/// \note
/// ``BinaryMinDigits``, ``DecimalMinDigits``, and ``HexMinDigits`` are
/// deprecated and renamed to ``BinaryMinDigitsInsert``,
/// ``DecimalMinDigitsInsert``, and ``HexMinDigitsInsert``, respectively.
/// \endnote
```
https://github.com/llvm/llvm-project/pull/164286
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits