diff options
Diffstat (limited to 'guides/source/rails_application_templates.md')
-rw-r--r-- | guides/source/rails_application_templates.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/rails_application_templates.md b/guides/source/rails_application_templates.md index 46828b8737..6cd19eb8e9 100644 --- a/guides/source/rails_application_templates.md +++ b/guides/source/rails_application_templates.md @@ -89,7 +89,7 @@ add_source "http://code.whytheluckystiff.net" Adds a line inside the `Application` class for `config/application.rb`. -If options `:env` is specified, the line is appended to the corresponding file in `config/environments`. +If `options[:env]` is specified, the line is appended to the corresponding file in `config/environments`. ```ruby environment 'config.action_mailer.default_url_options = {host: 'http://yourwebsite.example.com'}, env: 'production' |