aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorAndreas Scherer <andreas_coder@freenet.de>2009-02-16 11:29:41 +0100
committerAndreas Scherer <andreas_coder@freenet.de>2009-02-16 11:29:41 +0100
commit3a4f25fb63a47799b871ac9105089bda322cbef0 (patch)
treec1fb88cd417458e2625d1e92d076b19f424abe36 /railties
parent6408308aab958841dcba6001a9f8abf52fb20009 (diff)
downloadrails-3a4f25fb63a47799b871ac9105089bda322cbef0.tar.gz
rails-3a4f25fb63a47799b871ac9105089bda322cbef0.tar.bz2
rails-3a4f25fb63a47799b871ac9105089bda322cbef0.zip
Genitiv apostrophe added.
Diffstat (limited to 'railties')
-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 d5373df1b6..ecdf66cfc4 100644
--- a/railties/guides/source/rails_on_rack.textile
+++ b/railties/guides/source/rails_on_rack.textile
@@ -32,7 +32,7 @@ h4. Rails Application's Rack Object
h4. script/server
-<tt>script/server</tt> does the basic job of creating a +Rack::Builder+ object and starting the webserver. This is Rails equivalent of Rack's +rackup+ script.
+<tt>script/server</tt> does the basic job of creating a +Rack::Builder+ object and starting the webserver. This is Rails' equivalent of Rack's +rackup+ script.
Here's how +script/server+ creates an instance of +Rack::Builder+
@@ -84,7 +84,7 @@ h3. Action Controller Middleware Stack
Many of Action Controller's internal components are implemented as Rack middlewares. +ActionController::Dispatcher+ uses +ActionController::MiddlewareStack+ to combine various internal and external middlewares to form a complete Rails Rack application.
-NOTE: +ActionController::MiddlewareStack+ is Rails equivalent of +Rack::Builder+, but built for better flexibility and more features to meet Rails' requirements.
+NOTE: +ActionController::MiddlewareStack+ is Rails' equivalent of +Rack::Builder+, but built for better flexibility and more features to meet Rails' requirements.
h4. Inspecting Middleware Stack