Skip to content

Commit f392add

Browse files
committed
using propagating instead of bubbling
1 parent 4743051 commit f392add

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
@@ -569,9 +569,9 @@ in the schema:
569569
}
570570
```
571571

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

576576
```graphql example
577577
{

0 commit comments

Comments
 (0)