From 5f2c00b4384bc691bde72acfec170d15f46259f0 Mon Sep 17 00:00:00 2001 From: BreadInvasion <70557549+BreadInvasion@users.noreply.github.com> Date: Wed, 15 May 2024 04:20:04 -0400 Subject: [PATCH] Fixed typo in PathRegexp explanation --- docs/content/routing/routers/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/routing/routers/index.md b/docs/content/routing/routers/index.md index 4ba434771..117dc5b2a 100644 --- a/docs/content/routing/routers/index.md +++ b/docs/content/routing/routers/index.md @@ -368,7 +368,7 @@ Path are always starting with a `/`, except for `PathRegexp`. [case-insensitively](https://en.wikipedia.org/wiki/Case_sensitivity): ```yaml - HostRegexp(`(?i)^/products`) + PathRegexp(`(?i)^/products`) ``` #### Query and QueryRegexp