From 63e6c7869cd48a462f598211e63d1df75817e829 Mon Sep 17 00:00:00 2001 From: michalsn Date: Thu, 29 May 2025 12:16:35 +0200 Subject: [PATCH] docs: update description for the (:num) placeholder in routes --- user_guide_src/source/incoming/routing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_guide_src/source/incoming/routing.rst b/user_guide_src/source/incoming/routing.rst index 6a48e95fe7a2..4f4afce136f5 100644 --- a/user_guide_src/source/incoming/routing.rst +++ b/user_guide_src/source/incoming/routing.rst @@ -177,7 +177,7 @@ Placeholders Description ============ =========================================================================================================== (:any) will match all characters from that point to the end of the URI. This may include multiple URI segments. (:segment) will match any character except for a forward slash (``/``) restricting the result to a single segment. -(:num) will match any integer. +(:num) will match any positive integer. (:alpha) will match any string of alphabetic characters (:alphanum) will match any string of alphabetic characters or integers, or any combination of the two. (:hash) is the same as ``(:segment)``, but can be used to easily see which routes use hashed ids.