10000 minor #15255 Minor fixes (sebpacz) · symfony/symfony-docs@3329614 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3329614

Browse files
committed
minor #15255 Minor fixes (sebpacz)
This PR was merged into the 4.4 branch. Discussion ---------- Minor fixes This PR adds minor fixes to three pages. Commits ------- 80ad104 Minor fixes
2 parents 2ec1005 + 80ad104 commit 3329614

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

controller.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ the argument by its name:
271271
->addTag('controller.service_arguments')
272272
->setBindings([
273273
'$logger' => new Reference('monolog.logger.doctrine'),
274-
'$projectDir' => '%kernel.project_dir%'
274+
'$projectDir' => '%kernel.project_dir%',
275275
])
276276
;
277277

introduction/from_flat_php_to_symfony.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ The Sample Application in Symfony
528528

529529
The blog has come a *long* way, but it still contains a lot of code for such
530530
a basic application. Along the way, you've made a basic routing system and
531-
a method using ``ob_start()`` and ``ob_get_clean()`` to render templates.
531+
a function using ``ob_start()`` and ``ob_get_clean()`` to render templates.
532532
If, for some reason, you needed to continue building this "framework" from
533533
scratch, you could at least use Symfony's standalone :doc:`Routing </routing>`
534534
component and :doc:`Twig </templates>`, which already solve these problems.

page_creation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ Make sure that ``LuckyController`` extends Symfony's base
220220
// ...
221221
}
222222
223-
Now, use the handy ``render()`` function to render a template. Pass it a ``number``
223+
Now, use the handy ``render()`` method to render a template. Pass it a ``number``
224224
variable so you can use it in Twig::
225225

226226
// src/Controller/LuckyController.php

0 commit comments

Comments
 (0)
0