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

Consistently spell 'implementers' #1087

Merged
merged 1 commit into from
Jun 7, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cspell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ words:
- tatooine
- zuck
- zuckerberg
# Alternative spellings
- !implementor
- !implementors
4 changes: 2 additions & 2 deletions spec/Section 5 -- Validation.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ fragment aliasedLyingFieldTargetNotDefined on Dog {
```

For interfaces, direct field selection can only be done on fields. Fields of
concrete implementors are not relevant to the validity of the given
concrete implementers are not relevant to the validity of the given
interface-typed selection set.

For example, the following is valid:
Expand All @@ -376,7 +376,7 @@ fragment interfaceFieldSelection on Pet {
and the following is invalid:

```graphql counter-example
fragment definedOnImplementorsButNotInterface on Pet {
fragment definedOnImplementersButNotInterface on Pet {
nickname
}
```
Expand Down
4 changes: 2 additions & 2 deletions spec/Section 7 -- Response.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ request failed before execution, due to a syntax error, missing information, or
validation error, this entry must not be present.

The response map may also contain an entry with key `extensions`. This entry, if
set, must have a map as its value. This entry is reserved for implementors to
set, must have a map as its value. This entry is reserved for implementers to
extend the protocol however they see fit, and hence there are no additional
restrictions on its contents.

Expand Down Expand Up @@ -203,7 +203,7 @@ be the same:

GraphQL services may provide an additional entry to errors with key
`extensions`. This entry, if set, must have a map as its value. This entry is
reserved for implementors to add additional information to errors however they
reserved for implementers to add additional information to errors however they
see fit, and there are no additional restrictions on its contents.

```json example
Expand Down
Loading