Skip to content

Commit 5d5bcd7

Browse files
committed
Merge pull request #111 from nuance/fix_typos
Fix typos in validation examples
2 parents a028d8a + d2f2eb1 commit 5d5bcd7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spec/Section 5 -- Validation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1249,7 +1249,7 @@ query variableIsDefinedUsedInSingleFragment($atOtherHomes: Boolean) {
12491249
}
12501250

12511251
fragment isHousetrainedFragment on Dog {
1252-
isHousetrained(atOtherHomes: $atOtherHomes}
1252+
isHousetrained(atOtherHomes: $atOtherHomes)
12531253
}
12541254
```
12551255

@@ -1268,7 +1268,7 @@ query variableIsNotDefinedUsedInSingleFragment {
12681268
}
12691269
12701270
fragment isHousetrainedFragment on Dog {
1271-
isHousetrained(atOtherHomes: $atOtherHomes}
1271+
isHousetrained(atOtherHomes: $atOtherHomes)
12721272
}
12731273
```
12741274

@@ -1286,7 +1286,7 @@ fragment outerHousetrainedFragment on Dog {
12861286
}
12871287
12881288
fragment isHousetrainedFragment on Dog {
1289-
isHousetrained(atOtherHomes: $atOtherHomes}
1289+
isHousetrained(atOtherHomes: $atOtherHomes)
12901290
}
12911291
```
12921292

@@ -1307,7 +1307,7 @@ query housetrainedQueryTwo($atOtherHomes: Boolean) {
13071307
}
13081308

13091309
fragment isHousetrainedFragment on Dog {
1310-
isHousetrained(atOtherHomes: $atOtherHomes}
1310+
isHousetrained(atOtherHomes: $atOtherHomes)
13111311
}
13121312
```
13131313

@@ -1494,7 +1494,7 @@ and inner types. A nullable list cannot be passed to a non-null list, and a list
14941494
of nullable values cannot be passed to a list of non-null values.
14951495

14961496
```graphql
1497-
query nonNullListToList($nonNullBooleanList: ![Boolean]) {
1497+
query nonNullListToList($nonNullBooleanList: [Boolean]!) {
14981498
arguments {
14991499
booleanListArgField(booleanListArg: $nonNullBooleanList)
15001500
}

0 commit comments

Comments
 (0)