From 252e71d6574cda64d11801439e1c60da3085ffdb Mon Sep 17 00:00:00 2001 From: mautam Date: Wed, 29 Sep 2021 19:52:06 -0500 Subject: [PATCH] Fix incorrect formatted print hint; closes #1459. Co-authored-by: cod-eric <76266284+cod-eric@users.noreply.github.com> --- src/hello/print/fmt.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hello/print/fmt.md b/src/hello/print/fmt.md index dd698d29fc..82c3e01453 100644 --- a/src/hello/print/fmt.md +++ b/src/hello/print/fmt.md @@ -80,7 +80,7 @@ RGB (0, 0, 0) 0x000000 Two hints if you get stuck: * You [may need to list each color more than once][named_parameters], - * You can [pad with zeros to a width of 2][fmt_width] with `:02`. + * You can [pad with zeros to a width of 2][fmt_width] with `:0>2`. ### See also: