summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc A. Paradise <marcparadise@users.noreply.github.com>2022-08-09 19:40:25 +0000
committerGitHub <noreply@github.com>2022-08-09 19:40:25 +0000
commite3ac081bf53f3c9ce930f4b4609a31fef73b9fce (patch)
treed4a16e875b4d6d9ac60dc0cffeffccd1f0feb890
parent052762b180f1aaa9179633365914c01660ea5ea3 (diff)
parent45ced5d741d794dc1529981d3247026e3b336815 (diff)
downloadmixlib-config-e3ac081bf53f3c9ce930f4b4609a31fef73b9fce.tar.gz
Merge pull request #114 from EdwardBetts/spelling
Correct spelling mistake
-rw-r--r--spec/mixlib/config_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/mixlib/config_spec.rb b/spec/mixlib/config_spec.rb
index 974111e..12e162b 100644
--- a/spec/mixlib/config_spec.rb
+++ b/spec/mixlib/config_spec.rb
@@ -840,7 +840,7 @@ describe Mixlib::Config do
expect(@klass.save).to eql({ blah: { x: 10 } })
end
- # this tests existing (somewhat bizzare) behavior of mixlib-config where testing to
+ # this tests existing (somewhat bizarre) behavior of mixlib-config where testing to
# see if a key exists is equivalent to testing if the key has been set -- we can still
# retrieve the default value if it was set. the code in chef/chef which merges
# knife config values into cli values will be sensitive to this behavior.