From f5066f792fbb5fd9b68fcd83452b17773f4051ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Sun, 8 Aug 2021 19:28:34 +0200 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6e4eb86..e2da597 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ The layout is used *by* the vendor (package-provided) Markdown view. You'll like If you'd like to change the file that renders the Markdown itself, create `resources/views/pages/_markdown.blade.php` (the `_` prefix is important as it prevents direct visits) and change the `pages.views.markdown` config key to `pages._markdown`. -And if you'd like to customize the routing logic more ethan the config file allows you, simply register the route yourself (instead of calling `Page::routes()`): +And if you'd like to customize the routing logic more than the config file allows you, simply register the route yourself (instead of calling `Page::routes()`): ```php Route::get('/{page}', ArchTech\Pages\PageController::class);