Commit 19e9e027 authored by Slava Semushin's avatar Slava Semushin

Fix godoc comments.

parent e3210c6c
...@@ -27,7 +27,7 @@ func EscapePluginName(in string) string { ...@@ -27,7 +27,7 @@ func EscapePluginName(in string) string {
return strings.Replace(in, "/", "~", -1) return strings.Replace(in, "/", "~", -1)
} }
// EscapeQualifiedPluginName converts a plugin directory name in the format // UnescapePluginName converts a plugin directory name in the format
// vendor~pluginname into a proper vendor/pluginname. // vendor~pluginname into a proper vendor/pluginname.
func UnescapePluginName(in string) string { func UnescapePluginName(in string) string {
return strings.Replace(in, "~", "/", -1) return strings.Replace(in, "~", "/", -1)
......
...@@ -22,7 +22,8 @@ import ( ...@@ -22,7 +22,8 @@ import (
"strings" "strings"
) )
// A Line Delimiter is a filter that will // LineDelimiter is a filter that will split input on lines
// and bracket each line with the delimiter string.
type LineDelimiter struct { type LineDelimiter struct {
output io.Writer output io.Writer
delimiter []byte delimiter []byte
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment