Update website/source/docs/extending/custom-post-processors.html.md

Co-Authored-By: azr <azr@users.noreply.github.com>
This commit is contained in:
Megan Marsh 2019-04-30 11:56:39 +02:00 committed by GitHub
parent 1be337b383
commit 27cf53003f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ explaining what each method should do.
``` go ``` go
type PostProcessor interface { type PostProcessor interface {
Configure(interface{}) error 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)
} }
``` ```