diff options
author | rspeicher <rspeicher@gmail.com> | 2010-06-20 16:15:11 -0400 |
---|---|---|
committer | rspeicher <rspeicher@gmail.com> | 2010-06-20 16:15:11 -0400 |
commit | b083bf2410509ce89492ebb77d4fe877771ab033 (patch) | |
tree | 64676613c0b3b24dfa87c01f74b3b217f7962fdc /railties/guides/source | |
parent | 46dd8af1797a208b28b11cfee6e7ebf6eb48a36e (diff) | |
download | rails-b083bf2410509ce89492ebb77d4fe877771ab033.tar.gz rails-b083bf2410509ce89492ebb77d4fe877771ab033.tar.bz2 rails-b083bf2410509ce89492ebb77d4fe877771ab033.zip |
Generators Guide: Remove semicolons from prologue, as none of the other guides had them
Diffstat (limited to 'railties/guides/source')
-rw-r--r-- | railties/guides/source/generators.textile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/railties/guides/source/generators.textile b/railties/guides/source/generators.textile index 704a8793b2..106be1b6cd 100644 --- a/railties/guides/source/generators.textile +++ b/railties/guides/source/generators.textile @@ -4,12 +4,12 @@ Rails generators are an essential tool if you plan to improve your workflow and In this guide you will: -* Learn how to see which generators are available in your application; -* Create a generator using templates; -* Learn how Rails searches for generators before invoking them; -* Customize your scaffold by creating new generators; -* Customize your scaffold by changing generators templates; -* Learn how to use fallbacks to avoid overwriting a huge set of generators; +* Learn how to see which generators are available in your application +* Create a generator using templates +* Learn how Rails searches for generators before invoking them +* Customize your scaffold by creating new generators +* Customize your scaffold by changing generators templates +* Learn how to use fallbacks to avoid overwriting a huge set of generators endprologue. |