diff options
author | Calvin Tam <calvinyhtam@gmail.com> | 2014-02-05 19:55:06 +1100 |
---|---|---|
committer | Calvin Tam <calvinyhtam@gmail.com> | 2014-02-05 20:37:26 +1100 |
commit | 128fa3b9a410d2b5b05f24b931d16d7e46865817 (patch) | |
tree | b2f331ef45df72facb10fc460db74b4acdacbbf7 /guides | |
parent | 3ba0eeda02e85c312d2867afc4aa9afea50d93ec (diff) | |
download | rails-128fa3b9a410d2b5b05f24b931d16d7e46865817.tar.gz rails-128fa3b9a410d2b5b05f24b931d16d7e46865817.tar.bz2 rails-128fa3b9a410d2b5b05f24b931d16d7e46865817.zip |
Fixed typos [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/configuring.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 669086edbe..4728bdcb27 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -570,7 +570,7 @@ $ rails runner 'puts ActiveRecord::Base.connections' Since pool is not in the `ENV['DATABASE_URL']` provided connection information its information is merged in. Since `adapter` is duplicate, the `ENV['DATABASE_URL']` connection information wins. -The only way to explicitly not use the connection information in `ENV['DATABASE_URL']` is to specify an explicit URL connectinon using the `"url"` sub key: +The only way to explicitly not use the connection information in `ENV['DATABASE_URL']` is to specify an explicit URL connection using the `"url"` sub key: ``` $ cat config/database.yml @@ -716,7 +716,7 @@ Rails will now prepend "/app1" when generating links. #### Using Passenger -Passenger makes it easiy to run your application in a subdirectory. You can find +Passenger makes it easily to run your application in a subdirectory. You can find the relevant configuration in the [passenger manual](http://www.modrails.com/documentation/Users%20guide%20Apache.html#deploying_rails_to_sub_uri). |