grim/convey

Speeling mistakes.
inject
2017-10-13, Eric Fritz
ee5d8e87bff1
Parents fc7d9b732f03
Children 0b30b4ed85c9
Speeling mistakes.
--- a/state/state.go Fri Oct 13 17:59:47 2017 -0500
+++ b/state/state.go Fri Oct 13 18:00:46 2017 -0500
@@ -119,7 +119,7 @@
return env
}
-// MergeEnv adds additional environment arguments with lowere precedence to
+// MergeEnv adds additional environment arguments with lower precedence to
// the original state environment. If they duplicate an existing environment
// variable, that value will be unchanged.
func (st *State) MergeEnv(env []string) {
--- a/state/state_test.go Fri Oct 13 17:59:47 2017 -0500
+++ b/state/state_test.go Fri Oct 13 18:00:46 2017 -0500
@@ -44,7 +44,7 @@
st3 := st2.WrapWithExpandableEnv([]string{"X=2", "Y=2"}, []string{}, ";")
st4 := st3.WrapWithExpandableEnv([]string{"X=3", "Y=3", "Z=3"}, []string{}, ";")
- // Things in the "base" env are not override, but things
+ // Things in the "base" env are not overriden, but things
// that are wrapped take the highest precedence
Expect(st4.GetEnv()).To(ConsistOf([]string{"X=1", "Y=0", "Z=3"}))
}