0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

docs(std): fixed spelling mistake (#5662)

This commit is contained in:
Anil Seervi 2020-05-20 16:50:20 +05:30 committed by GitHub
parent eb5acb39d5
commit f366e5e9bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.