diff options
author | Xabier de Zuazo <xabier@onddo.com> | 2014-11-29 03:03:24 +0100 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2015-01-27 12:02:43 -0800 |
commit | 7dfcdb2717bbb5e34d2a50dbb67668284ad23323 (patch) | |
tree | 089db7fa1770688f61d30bfed616206a5a83f608 /lib/chef/run_context.rb | |
parent | 48916743c66ea57443533ca574da09c19ecc45b9 (diff) | |
download | chef-7dfcdb2717bbb5e34d2a50dbb67668284ad23323.tar.gz |
chef/run_context comment: use "predictable" word instead of "preserved" for Hash ordering description
Diffstat (limited to 'lib/chef/run_context.rb')
-rw-r--r-- | lib/chef/run_context.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/run_context.rb b/lib/chef/run_context.rb index 419e8e8fb9..fc54506407 100644 --- a/lib/chef/run_context.rb +++ b/lib/chef/run_context.rb @@ -198,7 +198,7 @@ ERROR_MESSAGE end # An Array of all recipes that have been loaded. This is stored internally - # as a Hash, so ordering is preserved. + # as a Hash, so ordering is predictable. # # Recipe names are given in fully qualified form, e.g., the recipe "nginx" # will be given as "nginx::default" @@ -209,7 +209,7 @@ ERROR_MESSAGE end # An Array of all attributes files that have been loaded. Stored internally - # using a Hash, so order is preserved. + # using a Hash, so order is predictable. # # Attribute file names are given in fully qualified form, e.g., # "nginx::default" instead of "nginx". |