aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorPrem Sichanugrist <s@sikachu.com>2011-03-28 04:31:19 +0800
committerDavid Heinemeier Hansson <david@loudthinking.com>2011-03-28 04:58:48 +0800
commit884e39f69eb8012b7ce455747d1b8aa7b34d83d3 (patch)
tree5cb62264d0ce7a5c925542efbbc3e6f2f39a1317 /railties
parent7cbdfa83035aacb0d4dbfa84525b54e9122efb75 (diff)
downloadrails-884e39f69eb8012b7ce455747d1b8aa7b34d83d3.tar.gz
rails-884e39f69eb8012b7ce455747d1b8aa7b34d83d3.tar.bz2
rails-884e39f69eb8012b7ce455747d1b8aa7b34d83d3.zip
Fix documentation typo
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/configuring.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile
index 04e2d6daed..298335d484 100644
--- a/railties/guides/source/configuring.textile
+++ b/railties/guides/source/configuring.textile
@@ -149,7 +149,7 @@ h4. Configuring Middleware
Every Rails application comes with a standard set of middleware which it uses in this order in the development environment:
-* +Rack::SSL+ Will force every requests to be under HTTPS protocal. Will be available if +config.force_ssl+ is set to _true_.
+* +Rack::SSL+ Will force every requests to be under HTTPS protocol. Will be available if +config.force_ssl+ is set to _true_.
* +ActionDispatch::Static+ is used to serve static assets. Disabled if +config.serve_static_assets+ is _true_.
* +Rack::Lock+ Will wrap the app in mutex so it can only be called by a single thread at a time. Only enabled if +config.action_controller.allow_concurrency+ is set to _false_, which it is by default.
* +ActiveSupport::Cache::Strategy::LocalCache+ Serves as a basic memory backed cache. This cache is not thread safe and is intended only for serving as a temporary memory cache for a single thread.