diff --git a/typo3/sysext/core/Documentation/Changelog/9.5/Feature-86365-RoutingEnhancersAndAspects.rst b/typo3/sysext/core/Documentation/Changelog/9.5/Feature-86365-RoutingEnhancersAndAspects.rst
index ce51d898438d773ac2a5b23f6a169ba352f0fdc9..7ddc95700c763be642e4d57bc62b24edef73671e 100644
--- a/typo3/sysext/core/Documentation/Changelog/9.5/Feature-86365-RoutingEnhancersAndAspects.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.5/Feature-86365-RoutingEnhancersAndAspects.rst
@@ -71,7 +71,7 @@ The Simple Enhancer works with various route arguments to map them to a argument
 
 `index.php?id=13&category=241&tag=Benni`
 results in
-`https://www.example.com/path-to/my-page/241/Benni`
+`https://www.example.com/path-to/my-page/show-by-category/241/Benni`
 
 The configuration looks like this::
 
@@ -84,8 +84,8 @@ The configuration looks like this::
        defaults:
          tag: ''
        requirements:
-         category_id: '[0-9]{1..3}'
-         tag: '^[a-zA-Z0-9].*$'
+         category_id: '[0-9]{1,3}'
+         tag: '[a-zA-Z0-9].*'
        _arguments:
          category_id: 'category'