grammar fixes

This commit is contained in:
Dan Ang
2023-03-20 00:29:19 +01:00
parent 88e047bd27
commit 540c2a56bd
9 changed files with 9 additions and 9 deletions

View File

@ -19,6 +19,6 @@ final class FileOrFolderNotFound extends InvalidArgumentException implements Exc
*/
public function __construct(string $filename)
{
parent::__construct(sprintf('The file or folder with the name `%s` not found.', $filename));
parent::__construct(sprintf('The file or folder with the name `%s` could not be found.', $filename));
}
}