aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/rails_on_rack.textile
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-05-19 17:40:40 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-05-19 17:40:40 +0530
commitd0a3be308c141ddebf86a8cf7dcb360965c57d36 (patch)
tree09b94fd3c63fcd2399154cd74ef546cba2fd6f7e /guides/source/rails_on_rack.textile
parent6c7c997102e328b5132f8076b5c06107ce459494 (diff)
downloadrails-d0a3be308c141ddebf86a8cf7dcb360965c57d36.tar.gz
rails-d0a3be308c141ddebf86a8cf7dcb360965c57d36.tar.bz2
rails-d0a3be308c141ddebf86a8cf7dcb360965c57d36.zip
copy edits [ci skip]
Diffstat (limited to 'guides/source/rails_on_rack.textile')
-rw-r--r--guides/source/rails_on_rack.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/rails_on_rack.textile b/guides/source/rails_on_rack.textile
index 4105641298..d8910cf1d0 100644
--- a/guides/source/rails_on_rack.textile
+++ b/guides/source/rails_on_rack.textile
@@ -154,7 +154,7 @@ config.middleware.swap ActionDispatch::ShowExceptions, Lifo::ShowExceptions
h5. Middleware Stack is an Enumerable
-The middleware stack behaves just like a normal +Enumerable+. You can use any +Enumerable+ methods to manipulate or interrogate the stack. The middleware stack also implements many +Array+ methods, including <tt>[] unshift delete</tt>. Methods described in the section above are just convenience methods.
+The middleware stack behaves just like a normal +Enumerable+. You can use any +Enumerable+ methods to manipulate or interrogate the stack. The middleware stack also implements some +Array+ methods including <tt>[]</tt>, +unshift+ and +delete+. Methods described in the section above are just convenience methods.
Append following lines to your application configuration: