Skip to content

Commit b3c04b6

Browse files
welcoMatticstof
andauthored
Remove semicolon
Co-authored-by: Christophe Coevoet <[email protected]>
1 parent 9418739 commit b3c04b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: routing.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1437,7 +1437,7 @@ you decided not to maintain it anymore), you can deprecate its definition:
14371437
$routes->add('some_route_name', '/some_route_path')
14381438
->controller('App\Controller\SomeController::index');
14391439
// second argument refers to the name of the route declared above
1440-
$routes->alias('alias_to_some_route_name', 'some_route_name');
1440+
$routes->alias('alias_to_some_route_name', 'some_route_name')
14411441
// this outputs the following generic deprecation message:
14421442
// Since acme/package 1.2: The "alias_to_some_route_name" route alias is deprecated. You should stop using it, as it will be removed in the future.
14431443
->deprecate('acme/package', '1.2', '')

0 commit comments

Comments
 (0)