From 8db3898b2c918a11c4c17e82b4dbe64611c3efb9 Mon Sep 17 00:00:00 2001 From: tyler-ball Date: Wed, 29 Oct 2014 11:54:34 -0700 Subject: Fixing documentation error --- lib/chef/resource_collection.rb | 4 +--- 1 file changed, 1 insertion(+), 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 -- cgit v1.2.1