Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Lutz committed May 12, 2016
1 parent 359ec76 commit d4fac14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/type/__tests__/schema-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ describe('Type System: Schema', () => {
};
expect(checkPossible).to.throw(
'Could not find possible implementing types for Interface in schema. ' +
'Check that schema.types is defined and is an array ofall possible ' +
'Check that schema.types is defined and is an array of all possible ' +
'types in the schema.'
);
});
Expand Down
2 changes: 1 addition & 1 deletion src/type/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export class GraphQLSchema {
invariant(
Array.isArray(possibleTypes),
`Could not find possible implementing types for ${abstractType} in ` +
'schema. Check that schema.types is defined and is an array of' +
'schema. Check that schema.types is defined and is an array of ' +
'all possible types in the schema.'
);
possibleTypeMap[abstractType.name] =
Expand Down

0 comments on commit d4fac14

Please sign in to comment.