aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authorRoman Kofman <rkofman@gmail.com>2013-09-27 10:56:40 -0700
committerRoman Kofman <rkofman@gmail.com>2013-09-27 10:56:40 -0700
commit5e32bd09b2cc9ec9193ca114078281e680d5100d (patch)
tree13c56c293ce54def0ee26e7e0e6fb3d724b8dda0 /guides/source/configuring.md
parent777b72ba1a89a7f100f528494f0b4e533cc0b20f (diff)
downloadrails-5e32bd09b2cc9ec9193ca114078281e680d5100d.tar.gz
rails-5e32bd09b2cc9ec9193ca114078281e680d5100d.tar.bz2
rails-5e32bd09b2cc9ec9193ca114078281e680d5100d.zip
Fixed grammatical typo in configuring.md guide.
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 c499cd0727..660d730b9a 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -528,7 +528,7 @@ Change the username and password in the `development` section as appropriate.
By default Rails ships with three environments: "development", "test", and "production". While these are sufficient for most use cases, there are circumstances when you want more environments.
-Imagine you have a server which mirrors the production environment but is only used for testing. Such a server is commonly called a "staging server". To define an environment called "staging" for this server just by create a file called `config/environments/staging.rb`. Please use the contents of any existing file in `config/environments` as a starting point and make the necessary changes from there.
+Imagine you have a server which mirrors the production environment but is only used for testing. Such a server is commonly called a "staging server". To define an environment called "staging" for this server, just create a file called `config/environments/staging.rb`. Please use the contents of any existing file in `config/environments` as a starting point and make the necessary changes from there.
That environment is no different than the default ones, start a server with `rails server -e staging`, a console with `rails console staging`, `Rails.env.staging?` works, etc.