Fixed a small comment typo

pull/6/head
Xing Zhou 2017-08-08 13:47:25 +08:00
parent 3900e36d62
commit ecc20e9024
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ const (
UNTAINTED = "untainted"
)
// parseTaint parses a taint from a string. Taint must be off the format '<key>=<value>:<effect>'.
// parseTaint parses a taint from a string. Taint must be of the format '<key>=<value>:<effect>'.
func parseTaint(st string) (v1.Taint, error) {
var taint v1.Taint
parts := strings.Split(st, "=")