From 35791fd0afff90d09e1e833ec8766511f8241802 Mon Sep 17 00:00:00 2001 From: Geert De Deckere Date: Sat, 1 Nov 2014 17:17:06 +0100 Subject: [PATCH] [HttpFoundation] Minor spelling fix in PHPDocs --- src/Symfony/Component/HttpFoundation/Request.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/HttpFoundation/Request.php b/src/Symfony/Component/HttpFoundation/Request.php index 2ba076ec22..1ce1a2f8ab 100644 --- a/src/Symfony/Component/HttpFoundation/Request.php +++ b/src/Symfony/Component/HttpFoundation/Request.php @@ -473,7 +473,7 @@ class Request * Overrides the PHP global variables according to this request instance. * * It overrides $_GET, $_POST, $_REQUEST, $_SERVER, $_COOKIE. - * $_FILES is never override, see rfc1867 + * $_FILES is never overridden, see rfc1867 * * @api */ @@ -1575,7 +1575,7 @@ class Request /** * Returns true if the request is a XMLHttpRequest. * - * It works if your JavaScript library set an X-Requested-With HTTP header. + * It works if your JavaScript library sets an X-Requested-With HTTP header. * It is known to work with common JavaScript frameworks: * @link http://en.wikipedia.org/wiki/List_of_Ajax_frameworks#JavaScript *