aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Scherer <andreas_coder@freenet.de>2009-02-16 11:36:28 +0100
committerAndreas Scherer <andreas_coder@freenet.de>2009-02-16 11:36:28 +0100
commite2aeccee940ccb8b5bdedc1333a946ceb699d18b (patch)
tree8bc11f5192439bff08cc3eab3ba423c67150c67c
parentc2c08c15a924b80f79043a28db2ade64e71187cb (diff)
downloadrails-e2aeccee940ccb8b5bdedc1333a946ceb699d18b.tar.gz
rails-e2aeccee940ccb8b5bdedc1333a946ceb699d18b.tar.bz2
rails-e2aeccee940ccb8b5bdedc1333a946ceb699d18b.zip
Mark table headers.
-rw-r--r--railties/guides/source/rails_on_rack.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/rails_on_rack.textile b/railties/guides/source/rails_on_rack.textile
index b93799c8aa..e300e047b4 100644
--- a/railties/guides/source/rails_on_rack.textile
+++ b/railties/guides/source/rails_on_rack.textile
@@ -50,7 +50,7 @@ app = Rack::Builder.new {
Middlewares used in the code above are primarily useful only in the development envrionment. The following table explains their usage:
-|Middleware|Purpose|
+|_.Middleware|_.Purpose|
|Rails::Rack::LogTailer|Appends log file output to console|
|Rails::Rack::Static|Serves static files inside +RAILS_ROOT/public+ directory|
|Rails::Rack::Debugger|Starts Debugger|
@@ -157,7 +157,7 @@ h4. Internal Middleware Stack
Much of Action Controller's functionality is implemented as Middlewares. The following table explains the purpose of each of them:
-|Middleware|Purpose|
+|_.Middleware|_.Purpose|
|Rack::Lock|Sets +env["rack.multithread"]+ flag to +true+ and wraps the application within a Mutex.|
|ActionController::Failsafe|Returns HTTP Status +500+ to the client if an exception gets raised while dispatching.|
|ActiveRecord::QueryCache|Enable the Active Record query cache.|