Skip to content

Commit 5b1ac59

Browse files
CitoIvanGoncharov
authored andcommitted
Minor typo/spelling fixes (#1505)
1 parent 213d844 commit 5b1ac59

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/subscription/subscribe.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import { getOperationRootType } from '../utilities/getOperationRootType';
4242
* compliant subscription, a GraphQL Response (ExecutionResult) with
4343
* descriptive errors and no data will be returned.
4444
*
45-
* If the the source stream could not be created due to faulty subscription
45+
* If the source stream could not be created due to faulty subscription
4646
* resolver logic or underlying systems, the promise will resolve to a single
4747
* ExecutionResult containing `errors` and no `data`.
4848
*

src/validation/__tests__/KnownArgumentNames-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ describe('Validate: Known argument names', () => {
268268
]);
269269
});
270270

271-
it('unknown arg on overrided standard directive', () => {
271+
it('unknown arg on overridden standard directive', () => {
272272
expectSDLErrors(`
273273
type Query {
274274
foo: String @deprecated(reason: "")

src/validation/__tests__/KnownDirectives-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ describe('Validate: Known directives', () => {
207207
`).to.deep.equal([]);
208208
});
209209

210-
it('with overrided standard directive', () => {
210+
it('with overridden standard directive', () => {
211211
expectSDLErrors(`
212212
schema @deprecated {
213213
query: Query

src/validation/__tests__/ProvidedRequiredArguments-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ describe('Validate: Provided required arguments', () => {
321321
]);
322322
});
323323

324-
it('Missing arg on overrided standard directive', () => {
324+
it('Missing arg on overridden standard directive', () => {
325325
expectSDLErrors(`
326326
type Query {
327327
foo: String @deprecated

0 commit comments

Comments
 (0)