Skip to content

Commit a114125

Browse files
authored
Update routing.rst
Missing ';' in Routing Component documentation
1 parent ab86f7f commit a114125

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)