Skip to content

Commit

Permalink
small fixes (#67)
Browse files Browse the repository at this point in the history
Dropped the Gopkg files (accidentally missed in previous commit).
Found a few copy/paste errors for the plugin docs.
  • Loading branch information
groob committed Nov 29, 2018
1 parent f45220d commit 7486f08
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 71 deletions.
53 changes: 0 additions & 53 deletions Gopkg.lock

This file was deleted.

16 changes: 0 additions & 16 deletions Gopkg.toml

This file was deleted.

2 changes: 1 addition & 1 deletion plugin/config/config.go
Expand Up @@ -24,7 +24,7 @@ type Plugin struct {

// NewConfigPlugin takes a value that implements ConfigPlugin and wraps it with
// the appropriate methods to satisfy the OsqueryPlugin interface. Use this to
// easily create plugins implementing osquery tables.
// easily create configuration plugins.
func NewPlugin(name string, fn GenerateConfigsFunc) *Plugin {
return &Plugin{name: name, generate: fn}
}
Expand Down
2 changes: 1 addition & 1 deletion plugin/logger/logger.go
Expand Up @@ -28,7 +28,7 @@ type Plugin struct {

// NewPlugin takes a value that implements LoggerPlugin and wraps it with
// the appropriate methods to satisfy the OsqueryPlugin interface. Use this to
// easily create plugins implementing osquery tables.
// easily create plugins implementing osquery loggers.
func NewPlugin(name string, fn LogFunc) *Plugin {
return &Plugin{name: name, logFn: fn}
}
Expand Down

0 comments on commit 7486f08

Please sign in to comment.