@@ -68,7 +68,7 @@ Before diving into this, test it out!
68
68
69
69
If you setup a proper virtual host in :doc: `Apache or Nginx </cookbook/configuration/web_server_configuration >`,
70
70
replace ``http://localhost:8000 `` with your host name - like
71
- ``http://symfony.local /app_dev.php/lucky/number ``.
71
+ ``http://symfony.dev /app_dev.php/lucky/number ``.
72
72
73
73
If you see a lucky number being printed back to you, congratulations! But
74
74
before you run off to play the lottery, check out how this works.
@@ -407,7 +407,7 @@ in your controller.
407
407
408
408
The ``{% extends 'base.html.twig' %} `` points to a layout file that lives
409
409
at `app/Resources/views/base.html.twig `_ and came with your new project.
410
- It's *really * basic (an unstyled HTML structure) and it's your's to customize.
410
+ It's *really * basic (an unstyled HTML structure) and it's yours to customize.
411
411
The ``{% block body %} `` part uses Twig's :ref: `inheritance system <twig-inheritance >`
412
412
to put the content into the middle of the ``base.html.twig `` layout.
413
413
@@ -549,9 +549,9 @@ is ``app/config/config.yml``:
549
549
// ...
550
550
551
551
The ``framework `` key configures FrameworkBundle, the ``twig `` key configures
552
- TwigBundle and so on. A *lot * of behavior in Symfony can be controlled.
553
- To find out how, see the :doc: ` Configuration Reference < /reference/index >`
554
- section.
552
+ TwigBundle and so on. A *lot * of behavior in Symfony can be controlled just
553
+ by changing one option in this configuration file. To find out how, see the
554
+ :doc: ` Configuration Reference < /reference/index >` section.
555
555
556
556
Or, to get a big example dump of all of the valid configuration under a key,
557
557
use the handy ``app/console `` command:
@@ -561,7 +561,7 @@ use the handy ``app/console`` command:
561
561
$ app/console config:dump-reference framework
562
562
563
563
There's a lot more power behind Symfony's configuration system, including
564
- environment , imports and parameters. To learn all of it, see the
564
+ environments , imports and parameters. To learn all of it, see the
565
565
:doc: `Configuration </book/configuration >` chapter.
566
566
567
567
What's Next?
0 commit comments