From 816f722e3bd2cff673142ac4be3c13acd25154c8 Mon Sep 17 00:00:00 2001 From: Matt Hollingsworth Date: Sat, 31 Jan 2015 09:41:01 -0500 Subject: [PATCH] Fix typo in log statement --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index 091dce2c2..23bb4b6ef 100644 --- a/config.go +++ b/config.go @@ -180,7 +180,7 @@ func (c *config) discoverSingle(glob string, m *map[string]string) error { // Look for foo-bar-baz. The plugin name is "baz" plugin := file[len(prefix):] - log.Printf("[DEBUG] Discoverd plugin: %s = %s", plugin, match) + log.Printf("[DEBUG] Discovered plugin: %s = %s", plugin, match) (*m)[plugin] = match }