aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorNicholas E. May (on Enterprise) <may@greentext.net>2010-10-03 00:37:15 -0500
committerNicholas E. May (on Enterprise) <may@greentext.net>2010-10-03 00:37:15 -0500
commit467d20c897ba8e837b1ec67095482f57e8a78dfc (patch)
tree62296eb88fe0b00f76f89e6266081b49fcd0d190 /railties
parentbcc103367b2ad0c8f7bfabe0c4148b0cb9b19509 (diff)
downloadrails-467d20c897ba8e837b1ec67095482f57e8a78dfc.tar.gz
rails-467d20c897ba8e837b1ec67095482f57e8a78dfc.tar.bz2
rails-467d20c897ba8e837b1ec67095482f57e8a78dfc.zip
Section 6, table, typo (extra '.rb')
Diffstat (limited to 'railties')
-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 44203ae4f1..b2810188c2 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -352,7 +352,7 @@ NOTE. While scaffolding will get you up and running quickly, the "one size fits
The scaffold generator will build 15 files in your application, along with some folders, and edit one more. Here's a quick overview of what it creates:
|_.File |_.Purpose|
-|db/migrate/20100207214725_create_posts.rb.rb |Migration to create the posts table in your database (your name will include a different timestamp)|
+|db/migrate/20100207214725_create_posts.rb |Migration to create the posts table in your database (your name will include a different timestamp)|
|app/models/post.rb |The Post model|
|test/fixtures/posts.yml |Dummy posts for use in testing|
|app/controllers/posts_controller.rb |The Posts controller|