diff options
author | Dan Erikson <derikson3@gmail.com> | 2013-05-27 13:52:04 -0600 |
---|---|---|
committer | Dan Erikson <derikson3@gmail.com> | 2013-05-27 13:52:04 -0600 |
commit | ff684ea3bfa7e448b60f6ab2e8f3feb60f48d7f9 (patch) | |
tree | 8d54b54adc9d25e864847140bef02ee0ab6624fb | |
parent | 04f00c62178ac94deab3d5541c0a53fa60dd35ea (diff) | |
download | rails-ff684ea3bfa7e448b60f6ab2e8f3feb60f48d7f9.tar.gz rails-ff684ea3bfa7e448b60f6ab2e8f3feb60f48d7f9.tar.bz2 rails-ff684ea3bfa7e448b60f6ab2e8f3feb60f48d7f9.zip |
Fixed quotes in environment example in Rails Application Templates guide.
-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 b548eaede8..f8062a1f7c 100644 --- a/guides/source/rails_application_templates.md +++ b/guides/source/rails_application_templates.md @@ -91,7 +91,7 @@ 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`. ```ruby -environment 'config.action_mailer.default_url_options = {host: 'http://yourwebsite.example.com'}, env: 'production' +environment 'config.action_mailer.default_url_options = {host: "http://yourwebsite.example.com"}', env: 'production' ``` A block can be used in place of the `data` argument. |