From e0c0289c8edb7cf63530d9fc1be682af315b89f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Crapet?= Date: Mon, 5 Dec 2016 10:26:58 +0100 Subject: [PATCH] Update security.rst Small fix, useless "a" on "Checking Permissions without @Security" part. --- best_practices/security.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/best_practices/security.rst b/best_practices/security.rst index 0ba606e0ec3..621a33c96dc 100644 --- a/best_practices/security.rst +++ b/best_practices/security.rst @@ -216,7 +216,7 @@ Checking Permissions without @Security The above example with ``@Security`` only works because we're using the :ref:`ParamConverter `, which gives the expression -access to the a ``post`` variable. If you don't use this, or have some other +access to the ``post`` variable. If you don't use this, or have some other more advanced use-case, you can always do the same security check in PHP: .. code-block:: php