Skip to content

Commit 7486f08

Browse files
authored
small fixes (osquery#67)
Dropped the Gopkg files (accidentally missed in previous commit). Found a few copy/paste errors for the plugin docs.
1 parent f45220d commit 7486f08

File tree

4 files changed

+2
-71
lines changed

4 files changed

+2
-71
lines changed

Gopkg.lock

Lines changed: 0 additions & 53 deletions
This file was deleted.

Gopkg.toml

Lines changed: 0 additions & 16 deletions
This file was deleted.

plugin/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ type Plugin struct {
2424

2525
// NewConfigPlugin takes a value that implements ConfigPlugin and wraps it with
2626
// the appropriate methods to satisfy the OsqueryPlugin interface. Use this to
27-
// easily create plugins implementing osquery tables.
27+
// easily create configuration plugins.
2828
func NewPlugin(name string, fn GenerateConfigsFunc) *Plugin {
2929
return &Plugin{name: name, generate: fn}
3030
}

plugin/logger/logger.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ type Plugin struct {
2828

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

0 commit comments

Comments
 (0)