summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKiffie Liversage <mrkiffie@gmail.com>2020-06-18 12:03:38 +0200
committerGitHub <noreply@github.com>2020-06-18 06:03:38 -0400
commiteea3223ade98a13ef4811e7d713df618375201d1 (patch)
tree9b5b6c8a083cf7b07b753a649275715a95cc5892
parent02ef670deb8984988cf65338d205d51ae0b368cd (diff)
typo (#6356)
-rw-r--r--std/fmt/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/std/fmt/README.md b/std/fmt/README.md
index 8d76cda2a..700943567 100644
--- a/std/fmt/README.md
+++ b/std/fmt/README.md
@@ -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