diff --git a/guides/source/engines.md b/guides/source/engines.md index b5af634e5900f2bf88b90bae5a977a0b8961e9f2..649bfad100feaa48635e99b32f175218e6f81ed8 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 to 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 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. 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.