Merge pull request #46 from zepouet/master

Update README.md
This commit is contained in:
Todd Persen 2015-07-05 16:43:45 -07:00
commit 659e1cfe85
1 changed files with 2 additions and 1 deletions

View File

@ -141,6 +141,7 @@ func Gather(acc plugins.Accumulator) error {
### Example ### Example
```go ```go
package simple
// simple.go // simple.go
@ -169,7 +170,7 @@ func (s *Simple) Gather(acc plugins.Accumulator) error {
} }
func init() { func init() {
plugins.Add("simple", func() plugins.Plugin { &Simple{} }) plugins.Add("simple", func() plugins.Plugin { return &Simple{} })
} }
``` ```