From d02e2aa7e80257e48674f53b690a20820c816d2c Mon Sep 17 00:00:00 2001 From: J Bruni Date: Sat, 15 Mar 2014 23:30:46 -0300 Subject: [PATCH] Typo fix at UploadedFile.php documentation --- src/Symfony/Component/HttpFoundation/File/UploadedFile.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/HttpFoundation/File/UploadedFile.php b/src/Symfony/Component/HttpFoundation/File/UploadedFile.php index f7e39f9a1f..3e6fdc163f 100644 --- a/src/Symfony/Component/HttpFoundation/File/UploadedFile.php +++ b/src/Symfony/Component/HttpFoundation/File/UploadedFile.php @@ -108,7 +108,7 @@ class UploadedFile extends File * Returns the original file name. * * It is extracted from the request from which the file has been uploaded. - * Then is should not be considered as a safe value. + * Then it should not be considered as a safe value. * * @return string|null The original name * @@ -123,7 +123,7 @@ class UploadedFile extends File * Returns the original file extension * * It is extracted from the original file name that was uploaded. - * Then is should not be considered as a safe value. + * Then it should not be considered as a safe value. * * @return string The extension */ @@ -181,7 +181,7 @@ class UploadedFile extends File * Returns the file size. * * It is extracted from the request from which the file has been uploaded. - * Then is should not be considered as a safe value. + * Then it should not be considered as a safe value. * * @return integer|null The file size *