From aa5e551eb8b8988f5e6430463f01d483b1bd9346 Mon Sep 17 00:00:00 2001 From: Yoshiyuki Hirano Date: Mon, 21 Aug 2017 14:15:21 +0900 Subject: [PATCH] Update Rails on Rack guide [ci skip] --- guides/source/rails_on_rack.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/rails_on_rack.md b/guides/source/rails_on_rack.md index 00020a0ea5..aa1476ecc0 100644 --- a/guides/source/rails_on_rack.md +++ b/guides/source/rails_on_rack.md @@ -125,7 +125,7 @@ use ActionDispatch::Flash use Rack::Head use Rack::ConditionalGet use Rack::ETag -run MyApp.application.routes +run MyApp::Application.routes ``` The default middlewares shown here (and some others) are each summarized in the [Internal Middlewares](#internal-middleware-stack) section, below.