Skip to content

Commit 12c6cad

Browse files
committed
minor #12378 Update routing.rst (AleksejJur)
This PR was merged into the 4.3 branch. Discussion ---------- Update routing.rst Missing ';' in Routing Component documentation <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- a114125 Update routing.rst
2 parents ab86f7f + a114125 commit 12c6cad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/routing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Here is a quick example::
4545
use Symfony\Component\Routing\Route;
4646
use Symfony\Component\Routing\RouteCollection;
4747

48-
$route = new Route('/blog/{slug}', ['_controller' => BlogController::class])
48+
$route = new Route('/blog/{slug}', ['_controller' => BlogController::class]);
4949
$routes = new RouteCollection();
5050
$routes->add('blog_show', $route);
5151

0 commit comments

Comments
 (0)