mirror of
https://github.com/denoland/deno.git
synced 2025-01-10 16:11:13 -05:00
typo (#6356)
This commit is contained in:
parent
02ef670deb
commit
eea3223ade
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue