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 DatasetAlreadyExists extends InvalidArgumentException implements Exc
*/
public function __construct(string $name, string $scope)
{
parent::__construct(sprintf('A dataset with the name `%s` already exist in scope [%s].', $name, $scope));
parent::__construct(sprintf('A dataset with the name `%s` already exists in scope [%s].', $name, $scope));
}
}