Skip to content

Commit 8be83d8

Browse files
authored
Fix wording of comment in buildClientSchema (#3821)
1 parent 735b43d commit 8be83d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utilities/buildClientSchema.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ export function buildClientSchema(
6565
introspection: IntrospectionQuery,
6666
options?: GraphQLSchemaValidationOptions,
6767
): GraphQLSchema {
68-
// Even even though `introspection` argument is typed in most cases it's received
69-
// as untyped value from server, so we will do an additional check here.
68+
// Even though the `introspection` argument is typed, in most cases it's received
69+
// as an untyped value from the server, so we will do an additional check here.
7070
devAssert(
7171
isObjectLike(introspection) && isObjectLike(introspection.__schema),
7272
`Invalid or incomplete introspection result. Ensure that you are passing "data" property of introspection response and no "errors" was returned alongside: ${inspect(

0 commit comments

Comments
 (0)