Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
Fixed typo in passthru processor
Browse files Browse the repository at this point in the history
  • Loading branch information
sandlbn committed Mar 22, 2016
1 parent 5a3ff85 commit 7b14ecf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin/processor/snap-processor-passthru/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ import (

func main() {
meta := passthru.Meta()
plugin.Start(meta, passthru.NewPassthruPublisher(), os.Args[1])
plugin.Start(meta, passthru.NewPassthruProcessor(), os.Args[1])
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func Meta() *plugin.PluginMeta {
return plugin.NewPluginMeta(name, version, pluginType, []string{plugin.SnapGOBContentType}, []string{plugin.SnapGOBContentType})
}

func NewPassthruPublisher() *passthruProcessor {
func NewPassthruProcessor() *passthruProcessor {
return &passthruProcessor{}
}

Expand Down

0 comments on commit 7b14ecf

Please sign in to comment.