From 69349198dd045363634370eecaeb69bd55e3516b Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Fri, 18 Jun 2021 10:08:23 -0700 Subject: [PATCH] Fix erroridf docs --- content/en/functions/errorf.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/content/en/functions/errorf.md b/content/en/functions/errorf.md index a20ad4f44..41ea2f192 100644 --- a/content/en/functions/errorf.md +++ b/content/en/functions/errorf.md @@ -30,17 +30,16 @@ Both functions return an empty string, so the messages are only printed to the c {{ warnf "You should update the shortcodes in %q" .Path }} ``` -Note that `errorf` and `warnf` support all the formatting verbs of the [fmt](https://golang.org/pkg/fmt/) package. +Note that `errorf`, `erroridf`, and `warnf` support all the formatting verbs of the [fmt](https://golang.org/pkg/fmt/) package. ## Suppress errors -Some times it may make sense to let the user suppress an ERROR and make the build succeed. +Sometimes it may make sense to let the user suppress an ERROR and make the build succeed. -You can do this by using the `erroridf` function. This functions takes an error ID as the first arument. +You can do this by using the `erroridf` function. This functions takes an error ID as the first argument. - -`` -{{ erroridf "my-custom-error" "You should consider fixing this."}} +``` +{{ erroridf "my-custom-error" "You should consider fixing this." }} ``` This will produce: