Skip to content

Commit db7b7e1

Browse files
committed
Fix broken reference
1 parent 8bf0a3e commit db7b7e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/Section 3 -- Type System.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -845,12 +845,12 @@ IsValidImplementationFieldType(fieldType, implementedFieldType):
845845
2. Let {implementedNullableType} be the unwrapped nullable type
846846
of {implementedFieldType} if it is a Non-Null type, otherwise let it be
847847
{implementedFieldType} directly.
848-
3. Return {IsValidImplementationField(nullableType, implementedNullableType)}.
848+
3. Return {IsValidImplementationFieldType(nullableType, implementedNullableType)}.
849849
2. If {fieldType} is a List type and {implementedFieldType} is also a List type:
850850
1. Let {itemType} be the unwrapped item type of {fieldType}.
851851
2. Let {implementedItemType} be the unwrapped item type
852852
of {implementedFieldType}.
853-
3. Return {IsValidImplementationField(itemType, implementedItemType)}.
853+
3. Return {IsValidImplementationFieldType(itemType, implementedItemType)}.
854854
3. If {fieldType} is the same type as {implementedFieldType} then return {true}.
855855
4. If {fieldType} is an Object type and {implementedFieldType} is
856856
a Union type and {fieldType} is a possible type of {implementedFieldType}

0 commit comments

Comments
 (0)