diff options
author | James Miller <james@jkmillertech.com> | 2010-01-27 09:23:42 -0800 |
---|---|---|
committer | James Miller <james@jkmillertech.com> | 2010-01-27 09:23:42 -0800 |
commit | b204d9477cc9d709fd7b45a89ec7e13e0bab6b1a (patch) | |
tree | 51b5c978fcb0e0c894eb7e020deaa7846b0623b2 /railties/guides/source/getting_started.textile | |
parent | 45b7bccd61c0c27180a64b5d743b07e46fd4eab5 (diff) | |
download | rails-b204d9477cc9d709fd7b45a89ec7e13e0bab6b1a.tar.gz rails-b204d9477cc9d709fd7b45a89ec7e13e0bab6b1a.tar.bz2 rails-b204d9477cc9d709fd7b45a89ec7e13e0bab6b1a.zip |
Fix view description mismatch
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-rw-r--r-- | railties/guides/source/getting_started.textile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 3ad73ad038..23967e4a7f 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -355,9 +355,9 @@ The scaffold generator will build 14 files in your application, along with some |app/models/post.rb |The Post model| |db/migrate/20100123083454_create_posts.rb |Migration to create the posts table in your database (your name will include a different timestamp)| |app/views/posts/index.html.erb| |A view to display an index of all posts | -|app/views/posts/edit.html.erb |A view to display a single post| -|app/views/posts/show.html.erb |A view to create a new post| -|app/views/posts/new.html.erb |A view to edit an existing post| +|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/layouts/posts.html.erb |A view to control the overall look and feel of the other posts views| |public/stylesheets/scaffold.css |Cascading style sheet to make the scaffolded views look better| |