Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor typo/spelling fixes #1505

Merged
merged 1 commit into from Sep 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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