Skip to content

Commit c454fd2

Browse files
committed
minor #4857 Add custom link labels where Cookbook articles titles looked wrong (javiereguiluz)
This PR was merged into the 2.3 branch. Discussion ---------- Add custom link labels where Cookbook articles titles looked wrong | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | all | Fixed tickets | #4822 Commits ------- 1b31ad1 Add custom link labels where Cookbook articles titles looked wrong
2 parents 17989fd + 1b31ad1 commit c454fd2

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

best_practices/configuration.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ add an extra layer of configuration that's not needed because you don't need
7474
or want these configuration values to change on each server.
7575

7676
The configuration options defined in the ``config.yml`` file usually vary from
77-
one :doc:`/cookbook/configuration/environments` to another. That's why Symfony
78-
already includes ``app/config/config_dev.yml`` and ``app/config/config_prod.yml``
77+
one :doc:`environment </cookbook/configuration/environments>` to another. That's
78+
why Symfony already includes ``app/config/config_dev.yml`` and ``app/config/config_prod.yml``
7979
files so that you can override specific values for each environment.
8080

8181
Constants vs Configuration Options

best_practices/controllers.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ For example:
139139
140140
use AppBundle\Entity\Post;
141141
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
142-
142+
143143
/**
144144
* @Route("/{id}", name="admin_post_show")
145145
*/
@@ -212,6 +212,7 @@ Pre and Post Hooks
212212
------------------
213213

214214
If you need to execute some code before or after the execution of your controllers,
215-
you can use the EventDispatcher component to :doc:`/cookbook/event_dispatcher/before_after_filters`.
215+
you can use the EventDispatcher component to
216+
:doc:`set up before and after filters </cookbook/event_dispatcher/before_after_filters>`.
216217

217218
.. _`ParamConverter`: http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html

best_practices/forms.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ fields:
165165

166166
If you need more control over how your fields are rendered, then you should
167167
remove the ``form_widget(form)`` function and render your fields individually.
168-
See :doc:`/cookbook/form/form_customization` for more information on this and how
169-
you can control *how* the form renders at a global level using form theming.
168+
See :doc:`/cookbook/form/form_customization` article for more information on this
169+
and how you can control *how* the form renders at a global level using form theming.
170170

171171
Handling Form Submits
172172
---------------------

0 commit comments

Comments
 (0)