Skip to content

Commit 9237ed2

Browse files
committed
rename BuildGraph to GraphFromRecords
1 parent 6d3fccb commit 9237ed2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec/Section 6 -- Execution.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ The procedure for yielding incremental results is specified by the
354354

355355
YieldIncrementalResults(data, errors, incrementalDataRecords):
356356

357-
- Let {graph} be the result of {BuildGraph(incrementalDataRecords)}.
357+
- Let {graph} be the result of {GraphFromRecords(incrementalDataRecords)}.
358358
- Let {pendingResults} be the result of {GetNonEmptyNewPending(graph)}.
359359
- Update {graph} to the subgraph rooted at nodes in {pendingResults}.
360360
- Yield the result of {GetInitialResult(data, errors, pendingResults)}.
@@ -377,7 +377,7 @@ YieldIncrementalResults(data, errors, incrementalDataRecords):
377377
- Replace {node} in {graph} with a new node corresponding to the Completed
378378
Incremental Data for {result}.
379379
- Let {resultIncrementalDataRecords} be {incrementalDataRecords} on {result}.
380-
- Update {graph} to {BuildGraph(resultIncrementalDataRecords, graph)}.
380+
- Update {graph} to {GraphFromRecords(resultIncrementalDataRecords, graph)}.
381381
- Let {completedDeferredFragments} be the set of root nodes in {graph} without
382382
any child Pending Data nodes.
383383
- Let {completedIncrementalDataNodes} be the set of completed Incremental Data
@@ -403,7 +403,7 @@ YieldIncrementalResults(data, errors, incrementalDataRecords):
403403
pending)}.
404404
- Complete this incremental result stream.
405405

406-
BuildGraph(incrementalDataRecords, graph):
406+
GraphFromRecords(incrementalDataRecords, graph):
407407

408408
- Let {newGraph} be a new directed acyclic graph containing all of the nodes and
409409
edges in {graph}.

0 commit comments

Comments
 (0)