Skip to content

Commit 3effd4a

Browse files
committed
consistent periods
1 parent a96836a commit 3effd4a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spec/Section 3 -- Type System.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2220,7 +2220,7 @@ SchemaCoordinate : Name
22202220
1. Let {typeName} be the value of the first {Name}.
22212221
2. Let {type} be the type in the {schema} named {typeName}.
22222222
3. If {type} does not exist, return {void}.
2223-
4. Return {type}
2223+
4. Return {type}.
22242224

22252225
SchemaCoordinate : Name . Name
22262226

@@ -2231,18 +2231,18 @@ SchemaCoordinate : Name . Name
22312231
5. Let {enumValueName} be the value of the second {Name}.
22322232
6. Let {enumValue} be the enum value of {type} named {enumValueName}.
22332233
7. If {enumValue} does not exist, return {void}.
2234-
8. Return {enumValue}
2234+
8. Return {enumValue}.
22352235
9. Otherwise if {type} is an Input Object type:
22362236
10. Let {inputFieldName} be the value of the second {Name}.
22372237
11. Let {inputField} be the input field of {type} named {inputFieldName}.
22382238
12. If {inputField} does not exist, return {void}.
2239-
13. Return {inputField}
2239+
13. Return {inputField}.
22402240
14. Otherwise:
22412241
15. Assert {type} must be an Object or Interface type.
22422242
16. Let {fieldName} be the value of the second {Name}.
22432243
17. Let {field} be the field of {type} named {fieldName}.
22442244
18. If {field} does not exist, return {void}.
2245-
19. Return {field}
2245+
19. Return {field}.
22462246

22472247
SchemaCoordinate : Name . Name ( Name : )
22482248

@@ -2271,7 +2271,7 @@ SchemaCoordinate : @ Name ( Name : )
22712271
2. Let {directive} be the directive in the {schema} named {directiveName}.
22722272
3. Assert {directive} must exist.
22732273
4. Let {directiveArgumentName} be the value of the second {Name}.
2274-
5. Let {directiveArgument} be the argument of {directive} named
2274+
5. Let {directiveArgument} be the argument of {directive} named.
22752275
{directiveArgumentName}.
22762276
6. If {directiveArgument} does not exist, return {void}.
22772277
7. Return {directiveArgument}.

0 commit comments

Comments
 (0)