diff options
author | Anil Seervi <anil13112000@gmail.com> | 2020-05-20 16:50:20 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-20 13:20:20 +0200 |
commit | f366e5e9bb5982376b160bebd35c3edf2c9ff19b (patch) | |
tree | 943b816d4bf76343ac1cd352ac2647de6fb54abb /std/fmt/README.md | |
parent | eb5acb39d5936d3e0fde44a33357cda88a5ff55f (diff) |
docs(std): fixed spelling mistake (#5662)
Diffstat (limited to 'std/fmt/README.md')
-rw-r--r-- | std/fmt/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/fmt/README.md b/std/fmt/README.md index 48f7c50db..6f9a67a18 100644 --- a/std/fmt/README.md +++ b/std/fmt/README.md @@ -17,7 +17,7 @@ This is very much a work-in-progress. I'm actively soliciting feedback. - behaviour of `%v` verb. In Golang, this is a shortcut verb to "print the default format" of the argument. It is currently implemented to format using - `toString` in the default case and `inpect` if the `%#v` alternative format + `toString` in the default case and `inspect` if the `%#v` alternative format flag is used in the format directive. Alternatively, `%V` could be used to distinguish the two. |