Skip to content

Commit ef96fc7

Browse files
committed
Typos
1 parent 6609d39 commit ef96fc7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/type/__tests__/scalars-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ describe('Type System: Specified scalar types', () => {
322322
expect(parseLiteral('0')).to.equal('0');
323323
expect(parseLiteral('-1')).to.equal('-1');
324324

325-
// Support arbituary long numbers even if they can't be represented in JS
325+
// Support arbitrary long numbers even if they can't be represented in JS
326326
expect(parseLiteral('90071992547409910')).to.equal('90071992547409910');
327327
expect(parseLiteral('-90071992547409910')).to.equal('-90071992547409910');
328328

src/validation/__tests__/KnownTypeNames-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ describe('Validate: Known type names', () => {
175175
]);
176176
});
177177

178-
it('doesnot consider non-type definitions', () => {
178+
it('does not consider non-type definitions', () => {
179179
expectSDLErrors(`
180180
query Foo { __typename }
181181
fragment Foo on Query { __typename }

0 commit comments

Comments
 (0)