aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorYoshiyuki Hirano <yhirano@me.com>2017-09-21 07:18:11 +0900
committerYoshiyuki Hirano <yhirano@me.com>2017-09-24 05:55:50 +0900
commit6b12d02e1586332503e93b8422d4d78286041e7e (patch)
tree1ea526dd4a8160716548d8415237d81929f4c974 /guides
parentaa0c8778dcd8ce7ab5aed082d7900e6ab87f1d91 (diff)
downloadrails-6b12d02e1586332503e93b8422d4d78286041e7e.tar.gz
rails-6b12d02e1586332503e93b8422d4d78286041e7e.tar.bz2
rails-6b12d02e1586332503e93b8422d4d78286041e7e.zip
Fix rails middleware list in api_app guide [ci skip]
* `MyApi::Application::Routes` is not middleware.
Diffstat (limited to 'guides')
-rw-r--r--guides/source/api_app.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/guides/source/api_app.md b/guides/source/api_app.md
index da1b7b25ef..43a7de88b0 100644
--- a/guides/source/api_app.md
+++ b/guides/source/api_app.md
@@ -216,7 +216,6 @@ An API application comes with the following middleware by default:
- `Rack::Head`
- `Rack::ConditionalGet`
- `Rack::ETag`
-- `MyApi::Application::Routes`
See the [internal middleware](rails_on_rack.html#internal-middleware-stack)
section of the Rack guide for further information on them.