Skip to content

Commit 1709c0e

Browse files
committed
minor #11119 Add missing bracket on a php code example (GregOriol)
This PR was merged into the 4.2 branch. Discussion ---------- Add missing bracket on a php code example This fixes a typo that seems to have appeared in the docs v4.2. Commits ------- adf8111 Add missing bracket on a php code example
2 parents be3e0b6 + adf8111 commit 1709c0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ placeholder:
566566
use App\Controller\BlogController;
567567
568568
return function (RoutingConfigurator $routes) {
569-
$routes->add('blog_list', '/blog/{page<\d+>?1')
569+
$routes->add('blog_list', '/blog/{page<\d+>?1}')
570570
->controller([BlogController::class, 'list'])
571571
;
572572
};

0 commit comments

Comments
 (0)