From 27ce3a47d4206b6ecd4cd4fe462cdfb758285b64 Mon Sep 17 00:00:00 2001 From: Alex Elkins Date: Tue, 9 Jun 2020 21:43:19 -0400 Subject: [PATCH] Fix grammatical error --- src/Monolog/Handler/StreamHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Monolog/Handler/StreamHandler.php b/src/Monolog/Handler/StreamHandler.php index 215ae02c..3a3460d0 100644 --- a/src/Monolog/Handler/StreamHandler.php +++ b/src/Monolog/Handler/StreamHandler.php @@ -169,7 +169,7 @@ class StreamHandler extends AbstractProcessingHandler $status = mkdir($dir, 0777, true); restore_error_handler(); if (false === $status && !is_dir($dir)) { - throw new \UnexpectedValueException(sprintf('There is no existing directory at "%s" and its not buildable: '.$this->errorMessage, $dir)); + throw new \UnexpectedValueException(sprintf('There is no existing directory at "%s" and it could not be created: '.$this->errorMessage, $dir)); } } $this->dirCreated = true;