docs(fmt): fix %f width typo in printf docs (#6139)

This commit is contained in:
Benjamin Stigsen 2024-10-24 06:58:50 +02:00 committed by GitHub
parent 3f0ef9f502
commit e3974eae69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -68,7 +68,7 @@
* %9f width 9, default precision
* %.9f default width, precision 9
* %8.9f width 8, precision 9
* %8.f width 9, precision 0
* %8.f width 8, precision 0
*
* In general, 'width' describes the minimum length of the output, while
* 'precision' limits the output.