diff options
author | Eric Henziger <hemtillhenziger@gmail.com> | 2017-04-17 12:01:34 +0200 |
---|---|---|
committer | Eric Henziger <hemtillhenziger@gmail.com> | 2017-04-17 12:01:34 +0200 |
commit | 767f29e181bdbbec2f96bb09822924eea18c2e9f (patch) | |
tree | 0f4f1927c489beb710de5cfb633d2552bc141077 /guides/source | |
parent | ee8beaa41bbe6ed47d40be45ce37abb3fb1b79be (diff) | |
download | rails-767f29e181bdbbec2f96bb09822924eea18c2e9f.tar.gz rails-767f29e181bdbbec2f96bb09822924eea18c2e9f.tar.bz2 rails-767f29e181bdbbec2f96bb09822924eea18c2e9f.zip |
Add missing word 'to' [ci skip]
While the original sentence is easy to understand, adding the 'to' is
imho a bit more correct.
Sources:
* https://ell.stackexchange.com/q/16964
* https://www.usingenglish.com/forum/threads/127099-It-is-referred-as-or-It-is-referred-to-as
Diffstat (limited to 'guides/source')
-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 d0b6cef3fd..a554e08204 100644 --- a/guides/source/generators.md +++ b/guides/source/generators.md @@ -426,7 +426,7 @@ Fallbacks allow your generators to have a single responsibility, increasing code Application Templates --------------------- -Now that you've seen how generators can be used _inside_ an application, did you know they can also be used to _generate_ applications too? This kind of generator is referred as a "template". This is a brief overview of the Templates API. For detailed documentation see the [Rails Application Templates guide](rails_application_templates.html). +Now that you've seen how generators can be used _inside_ an application, did you know they can also be used to _generate_ applications too? This kind of generator is referred to as a "template". This is a brief overview of the Templates API. For detailed documentation see the [Rails Application Templates guide](rails_application_templates.html). ```ruby gem "rspec-rails", group: "test" |