From 27cf53003fda15a0f6335be72b247fc8ece4ce59 Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Tue, 30 Apr 2019 11:56:39 +0200 Subject: [PATCH] Update website/source/docs/extending/custom-post-processors.html.md Co-Authored-By: azr --- website/source/docs/extending/custom-post-processors.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/extending/custom-post-processors.html.md b/website/source/docs/extending/custom-post-processors.html.md index 8d368aa26..c4bc34544 100644 --- a/website/source/docs/extending/custom-post-processors.html.md +++ b/website/source/docs/extending/custom-post-processors.html.md @@ -37,7 +37,7 @@ explaining what each method should do. ``` go type PostProcessor interface { Configure(interface{}) error - PostProcess(context.Context, Ui, Artifact) (a Artifact, keep, mustKeel bool, err error) + PostProcess(context.Context, Ui, Artifact) (a Artifact, keep, mustKeep bool, err error) } ```