You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -214,8 +214,8 @@ The `precision` may be specified as a decimal integer or as an asterisk characte
214
214
215
215
- For `s` specifiers, the `precision` specifies the maximum number of characters to be written to the output.
216
216
- For floating point specifiers (`f`, `F`, `e`, `E`), the `precision` specifies the number of digits after the decimal point to be written to the output (by default, this is `6`).
217
-
- For `g` and `G` specifiers, the `precision` specifies the maximum number of significant digits to be written to the output.
218
-
- For integer specifiers (`d`, `i`, `u`, `b`, `o`, `x`, `X`), the `precision` specifies the minimum number of digits to be written to the output. If the value to be written is shorter than this number, the result is padded with zeros on the left. The value is not truncated even if the result is longer. For
217
+
-For `g` and `G` specifiers, the `precision` specifies the maximum number of significant digits to be written to the output.
218
+
-For integer specifiers (`d`, `i`, `u`, `b`, `o`, `x`, `X`), the `precision` specifies the minimum number of digits to be written to the output. If the value to be written is shorter than this number, the result is padded with zeros on the left. The value is not truncated even if the result is longer. For
219
219
220
220
Alternatively, the `precision` may be specified as an asterisk character (`*`), in which case the argument preceding the conversion specification is used as the minimum number of digits.
0 commit comments