fixed typo

This commit is contained in:
Fabien Potencier 2014-03-18 17:51:19 +01:00
parent 442c4700a5
commit e4c4a7d538

View File

@ -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));