Skip to content

Commit 2ca4b0a

Browse files
committed
Minor tweaks
1 parent 0fb0c70 commit 2ca4b0a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

routing.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2232,8 +2232,8 @@ locale.
22322232
resource: '../../src/Controller/'
22332233
type: annotation
22342234
host:
2235-
en: 'https://www.symfony.com'
2236-
nl: 'https://www.symfony.nl'
2235+
en: 'https://www.example.com'
2236+
nl: 'https://www.example.nl'
22372237
22382238
.. code-block:: xml
22392239
@@ -2244,8 +2244,8 @@ locale.
22442244
xsi:schemaLocation="http://symfony.com/schema/routing
22452245
https://symfony.com/schema/routing/routing-1.0.xsd">
22462246
<import resource="../../src/Controller/" type="annotation">
2247-
<host locale="en">https://www.symfony.com</host>
2248-
<host locale="nl">https://www.symfony.nl</host>
2247+
<host locale="en">https://www.example.com</host>
2248+
<host locale="nl">https://www.example.nl</host>
22492249
</import>
22502250
</routes>
22512251
@@ -2256,8 +2256,8 @@ locale.
22562256
return function (RoutingConfigurator $routes) {
22572257
$routes->import('../../src/Controller/', 'annotation')
22582258
->host([
2259-
'en' => 'https://www.symfony.com',
2260-
'nl' => 'https://www.symfony.nl'
2259+
'en' => 'https://www.example.com',
2260+
'nl' => 'https://www.example.nl'
22612261
])
22622262
;
22632263
};

0 commit comments

Comments
 (0)