Merge pull request #1847 from AlekSi/patch-1

Fix typos [ci skip]
This commit is contained in:
Brad Rydzewski 2016-11-17 18:58:06 +01:00 committed by GitHub
commit e7d09ec48e

View file

@ -38,7 +38,7 @@ func substituteQ(str, key, val string) string {
return strings.Replace(str, key, val, -1) return strings.Replace(str, key, val, -1)
} }
// substitutePrefix is a helper function that substitutes paramters using // substitutePrefix is a helper function that substitutes parameters using
// ${parameter##prefix} notation with the parameter value minus the trimmed prefix. // ${parameter##prefix} notation with the parameter value minus the trimmed prefix.
func substitutePrefix(str, key, val string) string { func substitutePrefix(str, key, val string) string {
key = fmt.Sprintf("\\${%s##(.+)}", key) key = fmt.Sprintf("\\${%s##(.+)}", key)
@ -56,7 +56,7 @@ func substitutePrefix(str, key, val string) string {
return str return str
} }
// substituteSuffix is a helper function that substitutes paramters using // substituteSuffix is a helper function that substitutes parameters using
// ${parameter%%suffix} notation with the parameter value minus the trimmed suffix. // ${parameter%%suffix} notation with the parameter value minus the trimmed suffix.
func substituteSuffix(str, key, val string) string { func substituteSuffix(str, key, val string) string {
key = fmt.Sprintf("\\${%s%%%%(.+)}", key) key = fmt.Sprintf("\\${%s%%%%(.+)}", key)
@ -74,7 +74,7 @@ func substituteSuffix(str, key, val string) string {
return str return str
} }
// substituteDefault is a helper function that substitutes paramters using // substituteDefault is a helper function that substitutes parameters using
// ${parameter=default} notation with the parameter value. When empty the // ${parameter=default} notation with the parameter value. When empty the
// default value is used. // default value is used.
func substituteDefault(str, key, val string) string { func substituteDefault(str, key, val string) string {
@ -104,7 +104,7 @@ func unescapeBackslash(str string) string {
return string(re.ReplaceAll([]byte(str), []byte("$1"))) return string(re.ReplaceAll([]byte(str), []byte("$1")))
} }
// substituteReplace is a helper function that substitutes paramters using // substituteReplace is a helper function that substitutes parameters using
// ${parameter/old/new} notation with the parameter value. A find and replace // ${parameter/old/new} notation with the parameter value. A find and replace
// is performed before injecting the strings, replacing the old pattern with // is performed before injecting the strings, replacing the old pattern with
// the new value. // the new value.
@ -126,7 +126,7 @@ func substituteReplace(str, key, val string) string {
return strings.Replace(str, match[0], with, -1) return strings.Replace(str, match[0], with, -1)
} }
// substituteLeft is a helper function that substitutes paramters using // substituteLeft is a helper function that substitutes parameters using
// ${parameter:pos} notation with the parameter value, sliced up to the // ${parameter:pos} notation with the parameter value, sliced up to the
// specified position. // specified position.
func substituteLeft(str, key, val string) string { func substituteLeft(str, key, val string) string {
@ -152,7 +152,7 @@ func substituteLeft(str, key, val string) string {
return str return str
} }
// substituteLeft is a helper function that substitutes paramters using // substituteLeft is a helper function that substitutes parameters using
// ${parameter:pos:len} notation with the parameter value as a substring, // ${parameter:pos:len} notation with the parameter value as a substring,
// starting at the specified position for the specified length. // starting at the specified position for the specified length.
func substituteSubstr(str, key, val string) string { func substituteSubstr(str, key, val string) string {