Skip to content

Commit ff282d7

Browse files
CitoIvanGoncharov
authored andcommitted
Typos (#2157)
1 parent 6609d39 commit ff282d7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/language/__tests__/parser-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ describe('Parser', () => {
379379
expect(() => parse(document)).to.throw('Syntax Error');
380380
});
381381

382-
it('contains location information that only stringifys start/end', () => {
382+
it('contains location information that only stringifies start/end', () => {
383383
const result = parse('{ id }');
384384

385385
expect(JSON.stringify(result.loc)).to.equal('{"start":0,"end":6}');

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)