From e2aeccee940ccb8b5bdedc1333a946ceb699d18b Mon Sep 17 00:00:00 2001 From: Andreas Scherer Date: Mon, 16 Feb 2009 11:36:28 +0100 Subject: [PATCH] Mark table headers. --- railties/guides/source/rails_on_rack.textile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/railties/guides/source/rails_on_rack.textile b/railties/guides/source/rails_on_rack.textile index b93799c8aa897..e300e047b4902 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.|