Skip to content

Commit

Permalink
Clarify null check timing
Browse files Browse the repository at this point in the history
  • Loading branch information
abrown committed Jan 11, 2024
1 parent 1a3a7c3 commit a6d3800
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions design/mvp/CanonicalABI.md
Original file line number Diff line number Diff line change
Expand Up @@ -1717,8 +1717,8 @@ validation specifies:
> The inclusion of `$ft` ensures backwards compatibility for when arbitrary
> parameters are allowed.
Calling `$st` spawns `$n` threads, each of which:
- checks that reference `$f` is not null and satisfies type `$ft`
Calling `$st` checks that the reference `$f` is not null and satisfies type
`$ft`. Then, it spawns `$n` threads, each of which:
- invokes `$f` with `$c`
- executes `$f` until completion or trap in a `shared` context as described by
the [shared-everything threads] proposal.
Expand Down

0 comments on commit a6d3800

Please sign in to comment.