Skip to content

Commit 7d8b9d0

Browse files
committed
rename BuildGraph to GraphFromRecords
1 parent e8368ed commit 7d8b9d0

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
@@ -351,7 +351,7 @@ The procedure for yielding incremental results is specified by the
351351

352352
YieldIncrementalResults(data, errors, incrementalDataRecords):
353353

354-
- Let {graph} be the result of {BuildGraph(incrementalDataRecords)}.
354+
- Let {graph} be the result of {GraphFromRecords(incrementalDataRecords)}.
355355
- Let {pendingResults} be the result of {GetNonEmptyNewPending(graph)}.
356356
- Update {graph} to the subgraph rooted at nodes in {pendingResults}.
357357
- Yield the result of {GetInitialResult(data, errors, pendingResults)}.
@@ -374,7 +374,7 @@ YieldIncrementalResults(data, errors, incrementalDataRecords):
374374
- Replace {node} in {graph} with a new node corresponding to the Completed
375375
Incremental Data for {result}.
376376
- Let {resultIncrementalDataRecords} be {incrementalDataRecords} on {result}.
377-
- Update {graph} to {BuildGraph(resultIncrementalDataRecords, graph)}.
377+
- Update {graph} to {GraphFromRecords(resultIncrementalDataRecords, graph)}.
378378
- Let {completedDeferredFragments} be the set of root nodes in {graph} without
379379
any child Pending Data nodes.
380380
- Let {completedIncrementalDataNodes} be the set of completed Incremental Data
@@ -400,7 +400,7 @@ YieldIncrementalResults(data, errors, incrementalDataRecords):
400400
pending)}.
401401
- Complete this incremental result stream.
402402

403-
BuildGraph(incrementalDataRecords, graph):
403+
GraphFromRecords(incrementalDataRecords, graph):
404404

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

0 commit comments

Comments
 (0)