From e4c4a7d5381f2e86f3e7c9305709035b97625487 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 18 Mar 2014 17:51:19 +0100 Subject: [PATCH] fixed typo --- src/Symfony/Component/Filesystem/Filesystem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Filesystem/Filesystem.php b/src/Symfony/Component/Filesystem/Filesystem.php index 1dc6ac8177..04f1d36131 100644 --- a/src/Symfony/Component/Filesystem/Filesystem.php +++ b/src/Symfony/Component/Filesystem/Filesystem.php @@ -456,7 +456,7 @@ class Filesystem if (!is_dir($dir)) { $this->mkdir($dir); } elseif (!is_writable($dir)) { - throw new IOException(sprintf('Unable to write in the %s directory\n', $dir)); + throw new IOException(sprintf('Unable to write in the %s directory.', $dir)); } $tmpFile = tempnam($dir, basename($filename));