aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCesar Carruitero <cesar@mozilla.pe>2012-11-08 16:04:20 -0500
committerCesar Carruitero <cesar@mozilla.pe>2012-11-08 16:04:39 -0500
commitc04abbaa6366771db7434dea32f4f5b747fda1dc (patch)
tree5de5c8ffb87455e4ee4c2661d6424176b86da4e8
parente3e4fa1f6504ba27200c25558462dd2ba6c1fcd3 (diff)
downloadrails-c04abbaa6366771db7434dea32f4f5b747fda1dc.tar.gz
rails-c04abbaa6366771db7434dea32f4f5b747fda1dc.tar.bz2
rails-c04abbaa6366771db7434dea32f4f5b747fda1dc.zip
fix bugs in rails_on_rack [ci-skip]
-rw-r--r--guides/source/rails_on_rack.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/rails_on_rack.md b/guides/source/rails_on_rack.md
index ba96c0c0a9..d423d15cc3 100644
--- a/guides/source/rails_on_rack.md
+++ b/guides/source/rails_on_rack.md
@@ -15,7 +15,7 @@ WARNING: This guide assumes a working knowledge of Rack protocol and Rack concep
Introduction to Rack
--------------------
-bq. Rack provides a minimal, modular and adaptable interface for developing web applications in Ruby. By wrapping HTTP requests and responses in the simplest way possible, it unifies and distills the API for web servers, web frameworks, and software in between (the so-called middleware) into a single method call.
+Rack provides a minimal, modular and adaptable interface for developing web applications in Ruby. By wrapping HTTP requests and responses in the simplest way possible, it unifies and distills the API for web servers, web frameworks, and software in between (the so-called middleware) into a single method call.
- [Rack API Documentation](http://rack.rubyforge.org/doc/)
@@ -101,7 +101,7 @@ Action Dispatcher Middleware Stack
Many of Action Dispatchers's internal components are implemented as Rack middlewares. `Rails::Application` uses `ActionDispatch::MiddlewareStack` to combine various internal and external middlewares to form a complete Rails Rack application.
-NOTE: `ActionDispatch::MiddlewareStack` is Rails' equivalent of `Rack::Builder`, but built for better flexibility and more features to meet Rails' requirements.
+NOTE: `ActionDispatch::MiddlewareStack` is Rails equivalent of `Rack::Builder`, but built for better flexibility and more features to meet Rails' requirements.
### Inspecting Middleware Stack