aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/rails_application_templates.md
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2016-05-17 22:46:07 -0400
committerJon Moss <me@jonathanmoss.me>2016-05-17 22:46:07 -0400
commit73874a163f82dfb326c65a3e414d04b180b9074b (patch)
tree54255aa39d7a457e630e03ebd9b4a09873ba4f4d /guides/source/rails_application_templates.md
parent8bd0d347f1bd7e2c9c6d28b7a3209e4227421b17 (diff)
downloadrails-73874a163f82dfb326c65a3e414d04b180b9074b.tar.gz
rails-73874a163f82dfb326c65a3e414d04b180b9074b.tar.bz2
rails-73874a163f82dfb326c65a3e414d04b180b9074b.zip
Add tick marks + small grammar change
[ci skip]
Diffstat (limited to 'guides/source/rails_application_templates.md')
-rw-r--r--guides/source/rails_application_templates.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/rails_application_templates.md b/guides/source/rails_application_templates.md
index 3b773d84f8..3e99ee7021 100644
--- a/guides/source/rails_application_templates.md
+++ b/guides/source/rails_application_templates.md
@@ -15,14 +15,14 @@ After reading this guide, you will know:
Usage
-----
-To apply a template, you need to provide the Rails generator with the location of the template you wish to apply using the -m option. This can either be a path to a file or a URL.
+To apply a template, you need to provide the Rails generator with the location of the template you wish to apply using the `-m` option. This can either be a path to a file or a URL.
```bash
$ rails new blog -m ~/template.rb
$ rails new blog -m http://example.com/template.rb
```
-You can use the task `app:template` to apply templates to an existing Rails application. The location of the template needs to be passed in to an environment variable named LOCATION. Again, this can either be path to a file or a URL.
+You can use the `app:template` Rake task to apply templates to an existing Rails application. The location of the template needs to be passed in via the LOCATION environment variable. Again, this can either be path to a file or a URL.
```bash
$ bin/rails app:template LOCATION=~/template.rb