@@ -607,7 +607,7 @@ ExecuteField(objectType, objectValue, fieldType, fields, variableValues, subsequ
607607 * Let {fieldName} be the field name of {field}.
608608 * Let {argumentValues} be the result of {CoerceArgumentValues(objectType, field, variableValues)}
609609 * If {field} provides the directive ` @stream ` , let {streamDirective} be that directive.
610- * Let {initialCount} be the value or variable provided to {streamDirective}'s {initial_count } argument.
610+ * Let {initialCount} be the value or variable provided to {streamDirective}'s {initialCount } argument.
611611 * Let {resolvedValue} be {ResolvedFieldGenerator(objectType, objectValue, fieldName, argumentValues, initialCount)}.
612612 * Let {result} be the result of calling {CompleteValue(fieldType, fields, resolvedValue, variableValues, subsequentPayloads, parentPath)}.
613613 * Append {fieldName} to the {path} field of every {subsequentPayloads}.
@@ -721,7 +721,7 @@ to the expected return type. If the return type is another Object type, then
721721the field execution process continues recursively. In the case where a value
722722returned for a list type field is an iterator due to ` @stream ` specified on the
723723field, value completition iterates over the iterator until the number of items
724- yield by the iterator satisfies ` initial_count ` specified on the ` @stream ` directive.
724+ yield by the iterator satisfies ` initialCount ` specified on the ` @stream ` directive.
725725Unresolved items in the iterator will be stored in a stream record which the executor
726726resumes to execute after the initial execution finishes.
727727
@@ -769,7 +769,7 @@ CompleteValue(fieldType, fields, result, variableValues, subsequentPayloads, par
769769 * Let {field} be thte first entry in {fields}.
770770 * Let {innerType} be the inner type of {fieldType}.
771771 * Let {streamDirective} be the ` @stream ` directived provided on {field}.
772- * Let {initialCount} be the value or variable provided to {streamDirective}'s {initial_count } argument.
772+ * Let {initialCount} be the value or variable provided to {streamDirective}'s {initialCount } argument.
773773 * Let {label} be the value or variable provided to {streamDirective}'s {label} argument.
774774 * Let {resolvedItems} be an empty list
775775 * For each {members} in {result}:
0 commit comments