summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-07-04 16:34:53 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-07-04 16:34:53 +0200
commit4479f09c9cfde4e0aeb6cc72b5b0197f3eefb0d2 (patch)
treea8798c3c388b5475acf9a9b8c7de15354572df5b /docs/content/en/functions
parent24ce98b6d10b2088af61c15112f5c5ed915a0c35 (diff)
parent7eb0e10a80708c638554b8221a3120dc1168566c (diff)
Diffstat (limited to 'docs/content/en/functions')
-rw-r--r--docs/content/en/functions/errorf.md11
1 files changed, 5 insertions, 6 deletions
diff --git a/docs/content/en/functions/errorf.md b/docs/content/en/functions/errorf.md
index a20ad4f44..41ea2f192 100644
--- a/docs/content/en/functions/errorf.md
+++ b/docs/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: