Skip to content

Commit

Permalink
Fixed IsListType algorithm. (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib authored Jan 9, 2025
1 parent 690fba7 commit 8a8db9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/Section 4 -- Composition.md
Original file line number Diff line number Diff line change
Expand Up @@ -2830,7 +2830,7 @@ IsListType(type):

- If {type} is a Non-Null type:
- Let {innerType} be the inner type of {type}.
- Return {IsSingleObjectType(innerType)}.
- Return {IsListType(innerType)}.
- Else if {type} is a List type:
- Return true.
- Else:
Expand Down

0 comments on commit 8a8db9f

Please sign in to comment.