From a92780e72a45bbafc9e24c429d83bfc13c7afaaf Mon Sep 17 00:00:00 2001 From: Ray Baxter Date: Sun, 17 Jul 2011 09:07:18 -0700 Subject: [PATCH] use correct in description --- actionpack/lib/action_view/helpers/form_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb index 3a30263b49ccc..3a430abcdfeee 100644 --- a/actionpack/lib/action_view/helpers/form_helper.rb +++ b/actionpack/lib/action_view/helpers/form_helper.rb @@ -233,7 +233,7 @@ def convert_to_model(object) # <% end %> # # If your resource has associations defined, for example, you want to add comments - # to the post given that the routes are set correctly: + # to the document given that the routes are set correctly: # # <%= form_for([@document, @comment]) do |f| %> # ...