Commit 6f4a15f9 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #51627 from php-coder/fix_godoc

Automatic merge from submit-queue Fix godoc comments This PR fixes godoc comments. CC @simo5
parents 374e6316 19e9e027
......@@ -27,7 +27,7 @@ func EscapePluginName(in string) string {
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.
func UnescapePluginName(in string) string {
return strings.Replace(in, "~", "/", -1)
......
......@@ -22,7 +22,8 @@ import (
"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 {
output io.Writer
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