Skip to content

Commit 71cccf3

Browse files
committed
fix typo
1 parent af39391 commit 71cccf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Utilities/InputValues.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ static function coerceInputValue($inputValue, GraphQLType $type, $path = [])
8080
$coercedValue[$field->getName()] = self::coerceInputValue($fieldValue, $field->getType(), [$path, $field->getName(), $type->getName()]);
8181
} catch (GraphQLError $error) {
8282
// add information about explicit field name of input object type when coersion failed.
83-
throw new GraphQLError("Coercing value of \"{$field->getName()}\" failed explicity. " . $error->getMessage());
83+
throw new GraphQLError("Coercing value of \"{$field->getName()}\" failed explicitly. " . $error->getMessage());
8484
}
8585
}
8686

0 commit comments

Comments
 (0)