From 83ed405103801c0abc43fa92b93321484f0575f4 Mon Sep 17 00:00:00 2001 From: Evan Phoenix Date: Tue, 19 May 2015 22:39:48 -0700 Subject: [PATCH] Fix a couple typos --- PLUGINS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PLUGINS.md b/PLUGINS.md index e7ce67833..89423b575 100644 --- a/PLUGINS.md +++ b/PLUGINS.md @@ -14,7 +14,7 @@ developers don't have to worry about thread safety within these functions. it prepended. This is to keep plugins honest. * Plugins should call `plugins.Add` in their `init` function to register themselves. See below for a quick example. -* To be available within Tivan itself, plugins must add themselves to the `plugins.all/all.go` file. +* To be available within Tivan itself, plugins must add themselves to the `github.com/influxdb/tivan/plugins/all/all.go` file. * The `SampleConfig` function should return valid toml that describes how the plugin can be configured. This is include in `tivan -sample-config`. * The `Description` function should say in one line what this plugin does. @@ -32,7 +32,7 @@ type Plugin interface { ```go -# simple.go +// simple.go import "github.com/influxdb/tivan/plugins"