Skip to content

Commit e4c4a7d

Browse files
committed
fixed typo
1 parent 442c470 commit e4c4a7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Filesystem/Filesystem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ public function dumpFile($filename, $content, $mode = 0666)
456456
if (!is_dir($dir)) {
457457
$this->mkdir($dir);
458458
} elseif (!is_writable($dir)) {
459-
throw new IOException(sprintf('Unable to write in the %s directory\n', $dir));
459+
throw new IOException(sprintf('Unable to write in the %s directory.', $dir));
460460
}
461461

462462
$tmpFile = tempnam($dir, basename($filename));

0 commit comments

Comments
 (0)