diff options
author | Siddharth Bhagwan <sid_sss@hotmail.com> | 2014-07-21 17:39:20 +0530 |
---|---|---|
committer | Siddharth Bhagwan <sid_sss@hotmail.com> | 2014-07-21 17:39:20 +0530 |
commit | 7021e66588e4392c3efae9550dfea5c5c320d134 (patch) | |
tree | d865373df4c00b975c831b2bcd2db61303d74975 | |
parent | b84918057b87cf2ddce6325d3c2dd39c2da1739f (diff) | |
download | rails-7021e66588e4392c3efae9550dfea5c5c320d134.tar.gz rails-7021e66588e4392c3efae9550dfea5c5c320d134.tar.bz2 rails-7021e66588e4392c3efae9550dfea5c5c320d134.zip |
Generator guide grammatical error fixed [ci skip]
-rw-r--r-- | guides/source/generators.md | 2 |
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: |