Skip to content

Commit

Permalink
Minor typo/spelling fixes (#1505)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito authored and IvanGoncharov committed Sep 4, 2018
1 parent 213d844 commit 5b1ac59
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/subscription/subscribe.js
Expand Up @@ -42,7 +42,7 @@ import { getOperationRootType } from '../utilities/getOperationRootType';
* compliant subscription, a GraphQL Response (ExecutionResult) with
* descriptive errors and no data will be returned.
*
* If the the source stream could not be created due to faulty subscription
* If the source stream could not be created due to faulty subscription
* resolver logic or underlying systems, the promise will resolve to a single
* ExecutionResult containing `errors` and no `data`.
*
Expand Down
2 changes: 1 addition & 1 deletion src/validation/__tests__/KnownArgumentNames-test.js
Expand Up @@ -268,7 +268,7 @@ describe('Validate: Known argument names', () => {
]);
});

it('unknown arg on overrided standard directive', () => {
it('unknown arg on overridden standard directive', () => {
expectSDLErrors(`
type Query {
foo: String @deprecated(reason: "")
Expand Down
2 changes: 1 addition & 1 deletion src/validation/__tests__/KnownDirectives-test.js
Expand Up @@ -207,7 +207,7 @@ describe('Validate: Known directives', () => {
`).to.deep.equal([]);
});

it('with overrided standard directive', () => {
it('with overridden standard directive', () => {
expectSDLErrors(`
schema @deprecated {
query: Query
Expand Down
2 changes: 1 addition & 1 deletion src/validation/__tests__/ProvidedRequiredArguments-test.js
Expand Up @@ -321,7 +321,7 @@ describe('Validate: Provided required arguments', () => {
]);
});

it('Missing arg on overrided standard directive', () => {
it('Missing arg on overridden standard directive', () => {
expectSDLErrors(`
type Query {
foo: String @deprecated
Expand Down

0 comments on commit 5b1ac59

Please sign in to comment.