aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorRohit Arondekar <rohit.arondekar@gmail.com>2010-04-19 02:54:50 -0700
committerRohit Arondekar <rohit.arondekar@gmail.com>2010-04-19 02:54:50 -0700
commit3948ba89e143eeebb8a2a9bd5f370abb66a47377 (patch)
treecb0a9d60bebb07a46e558f2d8f01bee345840fd9 /railties/guides
parent2bae20138a4e3cb37ce26e396a4b14455a947ba2 (diff)
downloadrails-3948ba89e143eeebb8a2a9bd5f370abb66a47377.tar.gz
rails-3948ba89e143eeebb8a2a9bd5f370abb66a47377.tar.bz2
rails-3948ba89e143eeebb8a2a9bd5f370abb66a47377.zip
Fixed wrong purpose of _form.html.erb
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/getting_started.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index 58f2eaf178..6cc989d156 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -363,7 +363,7 @@ The scaffold generator will build 15 files in your application, along with some
|app/views/posts/edit.html.erb |A view to edit an existing post|
|app/views/posts/show.html.erb |A view to display a single post|
|app/views/posts/new.html.erb |A view to create a new post|
-|app/views/posts/_form.html.erb |A view to control the overall look and feel of the other posts views|
+|app/views/posts/_form.html.erb |A partial to control the overall look and feel of the form used in edit and new views|
|app/views/layouts/posts.html.erb |A view to control the overall look and feel of the other posts views|
|test/functional/posts_controller_test.rb |Functional testing harness for the posts controller|
|app/helpers/posts_helper.rb |Helper functions to be used from the posts views|