diff options
author | tyler-ball <tyleraball@gmail.com> | 2014-10-29 11:54:34 -0700 |
---|---|---|
committer | tyler-ball <tyleraball@gmail.com> | 2014-10-29 11:56:20 -0700 |
commit | 8db3898b2c918a11c4c17e82b4dbe64611c3efb9 (patch) | |
tree | 92525759daa88d71ac46fd09a566bd4425b03a4e /lib/chef/resource_collection.rb | |
parent | 2b6d395adad6f174902fe10e83c3a97318f3698e (diff) | |
download | chef-8db3898b2c918a11c4c17e82b4dbe64611c3efb9.tar.gz |
Fixing documentation errortball/doc-fix
Diffstat (limited to 'lib/chef/resource_collection.rb')
-rw-r--r-- | lib/chef/resource_collection.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/chef/resource_collection.rb b/lib/chef/resource_collection.rb index 30520cff7e..4fd6fcad24 100644 --- a/lib/chef/resource_collection.rb +++ b/lib/chef/resource_collection.rb @@ -43,8 +43,6 @@ class Chef # @param resource [Chef::Resource] The resource to insert # @param resource_type [String,Symbol] If known, the resource type used in the recipe, Eg `package`, `execute` # @param instance_name [String] If known, the recource name as used in the recipe, IE `vim` in `package 'vim'` - # @param at_location [Integer] If know, a location in the @resource_list to insert resource - # If you know the at_location but not the resource_type or instance_name, pass them in as nil # This method is meant to be the 1 insert method necessary in the future. It should support all known use cases # for writing into the ResourceCollection. def insert(resource, opts={}) @@ -60,7 +58,7 @@ class Chef # @deprecated def []=(index, resource) - Chef::Log.warn("`[]=` is deprecated, use `insert` with the `at_location` parameter") + Chef::Log.warn("`[]=` is deprecated, use `insert` (which only inserts at the end)") resource_list[index] = resource resource_set.insert_as(resource) end |