Skip to content

Commit fe31afe

Browse files
committed
using propagating instead of bubbling
1 parent 00a2caf commit fe31afe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec/Section 2 -- Language.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -570,9 +570,9 @@ in the schema:
570570
}
571571
```
572572

573-
If `user` was `Non-Nullable` in the schema, but we don't want `null`s bubbling past
574-
that point, then we can use `?` as an error boundary. `User` will be treated as
575-
`Nullable` for this operation:
573+
If `user` was `Non-Nullable` in the schema, but we don't want `null`s propagating
574+
past that point, then we can use `?` to create an error boundary. `User` will be
575+
treated as `Nullable` for this operation:
576576

577577
```graphql example
578578
{

0 commit comments

Comments
 (0)