From b5a24fd34697160e80394e74fdb1ea15c8f1f864 Mon Sep 17 00:00:00 2001 From: Benjamin ter Kuile Date: Mon, 10 Nov 2014 12:44:38 +0100 Subject: [PATCH] remove old match route statement from readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f76443..b94200e 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ get '/sitemap(.:format)' => 'pages#sitemap' scope '(/:locale)', constraints: {locale: /nl|be|de|fr|en/}, defaults: { locale: :nl } do get "/:name" => "pages#show", constraints: {name: /.*/}, as: :page end -match "/*url" => "pages#not_found" +get "/*url" => "pages#not_found" root :to => 'pages#home' ```