From 9199097936eb4440421a419c2a3673d79c8ccc25 Mon Sep 17 00:00:00 2001 From: Graham Watson Date: Mon, 30 May 2022 21:15:15 -0400 Subject: [PATCH] Fix typo --- src/Exception/UploadedFileErrorException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Exception/UploadedFileErrorException.php b/src/Exception/UploadedFileErrorException.php index b3a3e68e..a12e95ab 100644 --- a/src/Exception/UploadedFileErrorException.php +++ b/src/Exception/UploadedFileErrorException.php @@ -31,7 +31,7 @@ public static function dueToUnwritablePath() : self public static function dueToUnwritableTarget(string $targetDirectory) : self { return new self(sprintf( - 'The target directory `%s` does not exists or is not writable', + 'The target directory `%s` does not exist or is not writable', $targetDirectory )); }