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 AfterAllAlreadyExist extends InvalidArgumentException implements Exc
*/
public function __construct(string $filename)
{
parent::__construct(sprintf('The afterAll already exist in the filename `%s`.', $filename));
parent::__construct(sprintf('The afterAll already exists in the filename `%s`.', $filename));
}
}