From e3974eae69caa7b1eda9ca6c980ff74da3b05941 Mon Sep 17 00:00:00 2001 From: Benjamin Stigsen Date: Thu, 24 Oct 2024 06:58:50 +0200 Subject: [PATCH] docs(fmt): fix %f width typo in printf docs (#6139) --- fmt/printf.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmt/printf.ts b/fmt/printf.ts index bbb2d3052..e5b418024 100644 --- a/fmt/printf.ts +++ b/fmt/printf.ts @@ -68,7 +68,7 @@ * %9f width 9, default precision * %.9f default width, precision 9 * %8.9f width 8, precision 9 - * %8.f width 9, precision 0 + * %8.f width 8, precision 0 * * In general, 'width' describes the minimum length of the output, while * 'precision' limits the output.