Skip to content

Commit

Permalink
reword recursive abort case
Browse files Browse the repository at this point in the history
  • Loading branch information
yaacovCR committed Jun 19, 2024
1 parent 7d8b9d0 commit a4b506c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/Section 6 -- Execution.md
Original file line number Diff line number Diff line change
Expand Up @@ -407,9 +407,9 @@ GraphFromRecords(incrementalDataRecords, graph):
- For each {incrementalDataRecord} of {incrementalDataRecords}:
- Add {incrementalDataRecord} to {newGraph} as a new Pending Data node
directed from the {pendingResults} that it completes, adding each of
{pendingResults} to {newGraph} as new nodes, if necessary, each directed
from its {parent}, if defined, recursively adding each {parent} as necessary
until {incrementalDataRecord} is connected to {newGraph}.
{pendingResults} to {newGraph} as a new node directed from its {parent},
recursively adding each {parent} until {incrementalDataRecord} is connected
to {newGraph}, or the {parent} is not defined.
- Return {newGraph}.

GetNonEmptyNewPending(graph):
Expand Down

0 comments on commit a4b506c

Please sign in to comment.