Skip to content

Commit 28d7453

Browse files
authored
Merge pull request #645 from JoppeDC/patch-1
Change error message
2 parents 5e87e22 + 03b6fb7 commit 28d7453

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Resolver/TypeResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ private function baseType($alias): Type
6969
$type = $this->getSolution($alias);
7070
if (null === $type) {
7171
throw new UnresolvableException(
72-
\sprintf('Could not found type with alias "%s". Do you forget to define it?', $alias)
72+
\sprintf('Could not find type with alias "%s". Did you forget to define it?', $alias)
7373
);
7474
}
7575

0 commit comments

Comments
 (0)