diff options
author | Pablo Torres <tn.pablo@gmail.com> | 2012-12-04 21:38:06 -0500 |
---|---|---|
committer | Pablo Torres <tn.pablo@gmail.com> | 2012-12-04 21:38:06 -0500 |
commit | cb389fc6d002b1ec9102f6d39d6de195dcf90c34 (patch) | |
tree | bfb9189ee9ac1dc4b921850cb7800e220bc313a1 | |
parent | ad223520bf8dca33ced04a0af279527da49489fc (diff) | |
download | rails-cb389fc6d002b1ec9102f6d39d6de195dcf90c34.tar.gz rails-cb389fc6d002b1ec9102f6d39d6de195dcf90c34.tar.bz2 rails-cb389fc6d002b1ec9102f6d39d6de195dcf90c34.zip |
Define a generator before referring to it
-rw-r--r-- | guides/source/getting_started.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 17e9048c96..212a2a35f3 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -105,7 +105,7 @@ If it says something like "Rails 3.2.9", you are ready to continue. ### Creating the Blog Application -Rails comes with a number of generators that are designed to make your development life easier. One of these is the new application generator, which will provide you with the foundation of a Rails application so that you don't have to write it yourself. +Rails comes with a number of scripts called generators that are designed to make your development life easier by creating everything that's necessary to start working on a particular task. One of these is the new application generator, which will provide you with the foundation of a fresh Rails application so that you don't have to write it yourself. To use this generator, open a terminal, navigate to a directory where you have rights to create files, and type: |