From e8b1715c5cfd192d0142317216bb36a0f651cabd Mon Sep 17 00:00:00 2001 From: Anil Seervi Date: Wed, 20 May 2020 16:50:20 +0530 Subject: [PATCH] docs: fixed spelling mistake (denoland/deno#5662) --- fmt/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmt/README.md b/fmt/README.md index 48f7c50db5fa..6f9a67a18cb3 100644 --- a/fmt/README.md +++ b/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.