1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-10 16:11:13 -05:00
This commit is contained in:
Kiffie Liversage 2020-06-18 12:03:38 +02:00 committed by GitHub
parent 02ef670deb
commit eea3223ade
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -126,11 +126,11 @@ In general, 'width' describes the minimum length of the output, while
Numerical values for width and precision can be substituted for the `*` char, in
which case the values are obtained from the next args, e.g.:
sprintf ("%*.*f", 9,8,456.0)
sprintf("%*.*f", 9, 8, 456.0)
is equivalent to
sprintf ("%9.9f", 456.0)
sprintf("%9.8f", 456.0)
## Flags