Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
joonlabs committed Sep 7, 2021
1 parent af39391 commit 71cccf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utilities/InputValues.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ static function coerceInputValue($inputValue, GraphQLType $type, $path = [])
$coercedValue[$field->getName()] = self::coerceInputValue($fieldValue, $field->getType(), [$path, $field->getName(), $type->getName()]);
} catch (GraphQLError $error) {
// add information about explicit field name of input object type when coersion failed.
throw new GraphQLError("Coercing value of \"{$field->getName()}\" failed explicity. " . $error->getMessage());
throw new GraphQLError("Coercing value of \"{$field->getName()}\" failed explicitly. " . $error->getMessage());
}
}

Expand Down

0 comments on commit 71cccf3

Please sign in to comment.