Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Mar 18, 2014
1 parent 5ab540e commit 0f3dacb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Filesystem.php
Expand Up @@ -456,7 +456,7 @@ public function dumpFile($filename, $content, $mode = 0666)
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));
Expand Down

0 comments on commit 0f3dacb

Please sign in to comment.