From aadfea76ba5b503aa60f98a9466aa211d6d77b90 Mon Sep 17 00:00:00 2001 From: David Oleander Date: Thu, 10 Aug 2023 13:59:27 -0400 Subject: [PATCH] Add extension --- examples/docs/content/docs/05-file-based-routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/docs/content/docs/05-file-based-routing.md b/examples/docs/content/docs/05-file-based-routing.md index d85176a76..9f3d143e0 100644 --- a/examples/docs/content/docs/05-file-based-routing.md +++ b/examples/docs/content/docs/05-file-based-routing.md @@ -148,7 +148,7 @@ These cannot be used anywhere except for the final segment. That means no static ## Optional Dynamic Segments -`app/Route/Docs/Section__.elm` will match both `/docs/getting-started` as well as `/docs`. This is often useful when you want to treat a route as the default. You could use a static segment instead to handle `/docs` with `app/Route/Docs`. The choice depends on whether you want to use a separate Route Module to handle those routes or not. In the case of these docs, `/docs` shows the first docs page so it uses an optional segment. +`app/Route/Docs/Section__.elm` will match both `/docs/getting-started` as well as `/docs`. This is often useful when you want to treat a route as the default. You could use a static segment instead to handle `/docs` with `app/Route/Docs.elm`. The choice depends on whether you want to use a separate Route Module to handle those routes or not. In the case of these docs, `/docs` shows the first docs page so it uses an optional segment. ## Splat Routes