summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortyler-ball <tyleraball@gmail.com>2014-10-29 11:54:34 -0700
committertyler-ball <tyleraball@gmail.com>2014-10-29 11:56:20 -0700
commit8db3898b2c918a11c4c17e82b4dbe64611c3efb9 (patch)
tree92525759daa88d71ac46fd09a566bd4425b03a4e
parent2b6d395adad6f174902fe10e83c3a97318f3698e (diff)
downloadchef-tball/doc-fix.tar.gz
Fixing documentation errortball/doc-fix
-rw-r--r--lib/chef/resource_collection.rb4
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