Skip to content

Commit 8ffe8a9

Browse files
pborreliweaverryan
authored andcommitted
Fixed typos
1 parent 71495e8 commit 8ffe8a9

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

best_practices/security.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Authorization (i.e. Denying Access)
7575
Symfony gives you several ways to enforce authorization, including the ``access_control``
7676
configuration in :doc:`security.yml </reference/configuration/security>` the
7777
:ref:`@Security annotation <best-practices-security-annotation>` and using
78-
:ref:`isGranted <best-practices-directy-isGranted>` on the ``security.context``
78+
:ref:`isGranted <best-practices-directly-isGranted>` on the ``security.context``
7979
service directly.
8080

8181
.. best-practice::
@@ -206,7 +206,7 @@ Now you can reuse this method both in the template and in the security expressio
206206
<a href=""> ... </a>
207207
{% endif %}
208208

209-
.. _best-practices-directy-isGranted:
209+
.. _best-practices-directly-isGranted:
210210

211211
Checking Permissions without @Security
212212
--------------------------------------
@@ -352,5 +352,7 @@ develop :doc:`your own user provider </cookbook/security/custom_provider>` and
352352

353353
.. _`ParamConverter`: http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html
354354
.. _`@Security annotation`: http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/security.html
355+
.. _`security voter`: http://symfony.com/doc/current/cookbook/security/voters_data_permission.html
356+
.. _`ACL's`: http://symfony.com/doc/current/cookbook/security/acl.html
355357
.. _`expression`: http://symfony.com/doc/current/components/expression_language/introduction.html
356358
.. _`FOSUserBundle`: https://github.com/FriendsOfSymfony/FOSUserBundle

components/console/helpers/dialoghelper.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ from the command line, you need to overwrite the HelperSet used by the command::
264264

265265
$dialog = $command->getHelper('dialog');
266266
$dialog->setInputStream($this->getInputStream("Test\n"));
267-
// Equals to a user inputing "Test" and hitting ENTER
267+
// Equals to a user inputting "Test" and hitting ENTER
268268
// If you need to enter a confirmation, "yes\n" will work
269269

270270
$commandTester->execute(array('command' => $command->getName()));

components/translation/usage.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Pluralization
226226
-------------
227227

228228
Message pluralization is a tough topic as the rules can be quite complex. For
229-
instance, here is the mathematic representation of the Russian pluralization
229+
instance, here is the mathematical representation of the Russian pluralization
230230
rules::
231231

232232
(($number % 10 == 1) && ($number % 100 != 11))

reference/twig_reference.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Symfony Twig Extensions
88

99
Twig is the default template engine for Symfony. By itself, it already contains
1010
a lot of built-in functions, filters, tags and tests (learn more about them
11-
from the the `Twig Reference`_).
11+
from the `Twig Reference`_).
1212

1313
Symfony adds more custom extensions on top of Twig to integrate some components
1414
into the Twig templates. You can find more information about the custom

0 commit comments

Comments
 (0)