Commit a76650f9 authored by Klynton Jessup's avatar Klynton Jessup

Update post-processor.html.markdown

Fixed some typos in the interface{} mentions.
parent 78aa2196
...@@ -46,11 +46,11 @@ type PostProcessor interface { ...@@ -46,11 +46,11 @@ type PostProcessor interface {
The `Configure` method for each post-processor is called early in the The `Configure` method for each post-processor is called early in the
build process to configure the post-processor. The configuration is passed build process to configure the post-processor. The configuration is passed
in as a raw `interface{]`. The configure method is responsible for translating in as a raw `interface{}`. The configure method is responsible for translating
this configuration into an internal structure, validating it, and returning this configuration into an internal structure, validating it, and returning
any errors. any errors.
For decoding the `interface{]` into a meaningful structure, the For decoding the `interface{}` into a meaningful structure, the
[mapstructure](https://github.com/mitchellh/mapstructure) library is [mapstructure](https://github.com/mitchellh/mapstructure) library is
recommended. Mapstructure will take an `interface{}` and decode it into an recommended. Mapstructure will take an `interface{}` and decode it into an
arbitrarily complex struct. If there are any errors, it generates very arbitrarily complex struct. If there are any errors, it generates very
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment