Skip to content

Commit 03b6fb7

Browse files
authored
Change error message
1 parent 5e87e22 commit 03b6fb7

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)