Skip to content

Commit

Permalink
Merge pull request #44 from mjcaisse-intel/patch-1
Browse files Browse the repository at this point in the history
fix minor type
  • Loading branch information
ericniebler authored Jul 15, 2023
2 parents 345ff46 + b9a3605 commit c4c6dd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion execution.bs
Original file line number Diff line number Diff line change
Expand Up @@ -2091,7 +2091,7 @@ before the execution of that async operation. This frees the algorithm from
needing to resolve potential race conditions. For example, consider an algorithm
`sequence` that puts async operations in sequence by starting an operation only
after the preceding one has completed. In an expression like `sequence(a(),
then(src, [] { b(); }), c())`, one my reasonably assume that `a()`, `b()` and
then(src, [] { b(); }), c())`, one may reasonably assume that `a()`, `b()` and
`c()` are sequenced and therefore do not need synchronisation. Eager algorithms
break that assumption.

Expand Down

0 comments on commit c4c6dd6

Please sign in to comment.