Skip to content

Commit d248f55

Browse files
authored
Editorial: Clean trailing whitespace (#813)
1 parent eb86ed9 commit d248f55

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

spec/Section 3 -- Type System.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1450,15 +1450,15 @@ objects have a separate type in the system.
14501450

14511451
**Circular References**
14521452

1453-
Input Objects are allowed to reference other Input Objects as field types. A
1454-
circular reference occurs when an Input Object references itself either directly
1453+
Input Objects are allowed to reference other Input Objects as field types. A
1454+
circular reference occurs when an Input Object references itself either directly
14551455
or through referenced Input Objects.
14561456

14571457
Circular references are generally allowed, however they may not be defined as an
1458-
unbroken chain of Non-Null singular fields. Such Input Objects are invalid
1458+
unbroken chain of Non-Null singular fields. Such Input Objects are invalid
14591459
because there is no way to provide a legal value for them.
14601460

1461-
This example of a circularly-referenced input type is valid as the field `self`
1461+
This example of a circularly-referenced input type is valid as the field `self`
14621462
may be omitted or the value {null}.
14631463

14641464
```graphql example
@@ -1477,7 +1477,7 @@ input Example {
14771477
}
14781478
```
14791479

1480-
This example of a circularly-referenced input type is invalid as the field
1480+
This example of a circularly-referenced input type is invalid as the field
14811481
`self` cannot be provided a finite value.
14821482

14831483
```graphql counter-example
@@ -1487,7 +1487,7 @@ input Example {
14871487
}
14881488
```
14891489

1490-
This example is also invalid, as there is a non-null singular circular reference
1490+
This example is also invalid, as there is a non-null singular circular reference
14911491
via the `First.second` and `Second.first` fields.
14921492

14931493
```graphql counter-example

0 commit comments

Comments
 (0)