Skip to content

Commit 60a273d

Browse files
committed
Merge pull request #38 from simenbrekken/patch-1
Correct a few typos and grammatical issues.
2 parents fc50e15 + aea7be1 commit 60a273d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Section 2 -- Language.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ query getZuckProfile($devicePicSize: Int) {
278278

279279
Values for those variables are provided along with a GraphQL query, so they may be
280280
substituted during execution. If providing JSON for the variables values, we
281-
could run this query and request profilePic of size 60 with:
281+
could run this query and request profilePic of size 60 width:
282282

283283
```js
284284
{
@@ -418,7 +418,7 @@ will be present and `friends` will not.
418418
Query variables can be used within fragments. Query variables have global scope
419419
with a given operation, so a variable used within a fragment must be declared
420420
in any top-level operation that transitively consumes that fragment. If
421-
variable is referenced in a fragment and is included by an operation that does
421+
a variable is referenced in a fragment and is included by an operation that does
422422
not define that variable, the operation cannot be executed.
423423

424424
### Inline fragments

Section 5 -- Validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ GraphQL does not just verify if a request is syntactically correct.
55
Prior to execution, it can also verify that a request is valid
66
within the context of a given GraphQL schema. Validation is primarily
77
targeted at development-time tooling. Any client-side tooling
8-
should returns errors and not allow the formulation of queries
8+
should return errors and not allow the formulation of queries
99
known to violate the type system at a given point in time.
1010

1111
Total request validation on the server-side during execution is optional. As

0 commit comments

Comments
 (0)