aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/generators.md
diff options
context:
space:
mode:
authorSiddharth Bhagwan <sid_sss@hotmail.com>2014-07-21 17:39:20 +0530
committerSiddharth Bhagwan <sid_sss@hotmail.com>2014-07-21 17:39:20 +0530
commit7021e66588e4392c3efae9550dfea5c5c320d134 (patch)
treed865373df4c00b975c831b2bcd2db61303d74975 /guides/source/generators.md
parentb84918057b87cf2ddce6325d3c2dd39c2da1739f (diff)
downloadrails-7021e66588e4392c3efae9550dfea5c5c320d134.tar.gz
rails-7021e66588e4392c3efae9550dfea5c5c320d134.tar.bz2
rails-7021e66588e4392c3efae9550dfea5c5c320d134.zip
Generator guide grammatical error fixed [ci skip]
Diffstat (limited to 'guides/source/generators.md')
-rw-r--r--guides/source/generators.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/generators.md b/guides/source/generators.md
index 93fb5eece8..be64f1638d 100644
--- a/guides/source/generators.md
+++ b/guides/source/generators.md
@@ -35,7 +35,7 @@ $ bin/rails generate helper --help
Creating Your First Generator
-----------------------------
-Since Rails 3.0, generators are built on top of [Thor](https://github.com/erikhuda/thor). Thor provides powerful options parsing and a great API for manipulating files. For instance, let's build a generator that creates an initializer file named `initializer.rb` inside `config/initializers`.
+Since Rails 3.0, generators are built on top of [Thor](https://github.com/erikhuda/thor). Thor provides powerful options for parsing and a great API for manipulating files. For instance, let's build a generator that creates an initializer file named `initializer.rb` inside `config/initializers`.
The first step is to create a file at `lib/generators/initializer_generator.rb` with the following content: