aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Porter <zporter9@gmail.com>2013-01-11 15:26:05 -0500
committerZachary Porter <zporter9@gmail.com>2013-01-11 15:26:05 -0500
commitd2d07b3adea8f443296dfb67c9c568d35d1e13bc (patch)
treeb1bd56a26bff9d3a1dcf39678353cdea34a49ba5
parent0a89d4db1e06d06026bc73726a47d2ef20748070 (diff)
downloadrails-d2d07b3adea8f443296dfb67c9c568d35d1e13bc.tar.gz
rails-d2d07b3adea8f443296dfb67c9c568d35d1e13bc.tar.bz2
rails-d2d07b3adea8f443296dfb67c9c568d35d1e13bc.zip
Fix typo in guides/source/engines.md
-rw-r--r--guides/source/engines.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md
index 649bfad100..0a346b28f9 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -288,7 +288,7 @@ Now people will only need to go to the root of the engine to see all the posts,
### Generating a comments resource
-Now that the engine can create new blog posts, it only makes sense to add commenting functionality as well. To do get this, you'll need to generate a comment model, a comment controller and then modify the posts scaffold to display comments and allow people to create new ones.
+Now that the engine can create new blog posts, it only makes sense to add commenting functionality as well. To do this, you'll need to generate a comment model, a comment controller and then modify the posts scaffold to display comments and allow people to create new ones.
Run the model generator and tell it to generate a `Comment` model, with the related table having two columns: a `post_id` integer and `text` text column.