aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source
diff options
context:
space:
mode:
authorDavid N. Welton <davidw@dedasys.com>2010-11-22 15:09:58 +0100
committerDavid N. Welton <davidw@dedasys.com>2010-11-22 15:09:58 +0100
commit8c17d30d687b0b9719d6998b1dc8144490132b8d (patch)
tree7a7a68fb22e0ee8f491eea128ca7fe021e42aec2 /railties/guides/source
parent51007f1dbafe029ed85b2a296736a00e6b24ec58 (diff)
downloadrails-8c17d30d687b0b9719d6998b1dc8144490132b8d.tar.gz
rails-8c17d30d687b0b9719d6998b1dc8144490132b8d.tar.bz2
rails-8c17d30d687b0b9719d6998b1dc8144490132b8d.zip
Slightly more natural sounding phrase.
Diffstat (limited to 'railties/guides/source')
-rw-r--r--railties/guides/source/generators.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/generators.textile b/railties/guides/source/generators.textile
index c0d3116fe4..e0796d2f72 100644
--- a/railties/guides/source/generators.textile
+++ b/railties/guides/source/generators.textile
@@ -201,7 +201,7 @@ config.generators do |g|
end
</ruby>
-If we generate another resource with the scaffold generator, we can notice that neither stylesheets nor fixtures are created anymore. If you want to customize it further, for example to use DataMapper and RSpec instead of Active Record and TestUnit, it's just a matter of adding their gems to your application and configuring your generators.
+If we generate another resource with the scaffold generator, we can see that neither stylesheets nor fixtures are created anymore. If you want to customize it further, for example to use DataMapper and RSpec instead of Active Record and TestUnit, it's just a matter of adding their gems to your application and configuring your generators.
To demonstrate this, we are going to create a new helper generator that simply adds some instance variable readers. First, we create a generator: