From 46647c126286b79de0d92c53a7f5564370757cdf Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Fri, 2 Jan 2015 15:34:42 +0100 Subject: [PATCH] add missing comma and remove a serial comma --- best_practices/security.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/best_practices/security.rst b/best_practices/security.rst index 0519b917edf..19ce6574c14 100644 --- a/best_practices/security.rst +++ b/best_practices/security.rst @@ -73,7 +73,7 @@ Authorization (i.e. Denying Access) ----------------------------------- Symfony gives you several ways to enforce authorization, including the ``access_control`` -configuration in :doc:`security.yml ` the +configuration in :doc:`security.yml `, the :ref:`@Security annotation ` and using :ref:`isGranted ` on the ``security.context`` service directly. @@ -232,8 +232,8 @@ Now, you can use the voter with the ``@Security`` annotation: // ... } -You can also use this directly with the ``security.context`` service, or -via the even easier shortcut in a controller: +You can also use this directly with the ``security.context`` service or via +the even easier shortcut in a controller: .. code-block:: php