aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-11-18 13:47:45 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-11-18 13:47:45 -0200
commita951d5b0933a4a043619bc1bccb561d499b04633 (patch)
tree937bac9e5ac56fd98b5a18c36850348b502e590a /guides/source/configuring.md
parentce37df9cc1f2c3cdc63dc677645bdfec05c787fe (diff)
downloadrails-a951d5b0933a4a043619bc1bccb561d499b04633.tar.gz
rails-a951d5b0933a4a043619bc1bccb561d499b04633.tar.bz2
rails-a951d5b0933a4a043619bc1bccb561d499b04633.zip
Revert "Fixed a few grammar issues."
This reverts commit 16ce41b7f4449d6df15df30d69aef18da6510f36. Reason: See https://github.com/rails/rails/commit/16ce41b7f4449d6df15df30d69aef18da6510f36#commitcomment-14475125
Diffstat (limited to 'guides/source/configuring.md')
-rw-r--r--guides/source/configuring.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index f14b546c1b..729d1cc661 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -723,7 +723,7 @@ $ bin/rails runner 'puts ActiveRecord::Base.configurations'
Here the connection information in `ENV['DATABASE_URL']` is ignored, note the different adapter and database name.
-Since it is possible to embed ERB in your `config/database.yml` it is the best practice to explicitly show you are using the `ENV['DATABASE_URL']` to connect to your database. This is especially useful in production since you should not commit secrets like your database password into your source control (such as Git).
+Since it is possible to embed ERB in your `config/database.yml` it is best practice to explicitly show you are using the `ENV['DATABASE_URL']` to connect to your database. This is especially useful in production since you should not commit secrets like your database password into your source control (such as Git).
```
$ cat config/database.yml