Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
josef-widder committed Jun 21, 2024
1 parent d2b40a2 commit 756972f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion specs/quint/specs/reset/resetFunc.qnt
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ pure def newL2Block (chain: List[L2Block], regs: Set[Registration], provable: bo
// The current encoding allows unstale registrations, as long as there are no gaps.
pure def forkBlock (prev: L2Block, regs: Set[Registration], h: Height, fID: ForkID, provable: bool) : L2Block =
val allRegs = prev.unstagedUpdates.union(prev.stagedUpdates).union(regs)
// we clarified this point with Matan on the Google doc, that initially only taked about
// we clarified this point with Matan on the Google doc, that initially only talked about
// staged and stale, but didn't consider unstaged
val toApplyNow = allRegs.denseSubset(prev.highest_staged_seq_num)
val highest = if (toApplyNow == Set()) prev.highest_staged_seq_num else toApplyNow.maxSeqNum()
Expand Down
2 changes: 1 addition & 1 deletion specs/quint/specs/reset/resetSystem.qnt
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ def valid (b: L2Block) : bool =

// The following temporal properties below are just here for documentation. Apalache
// has some basic temporal model checking capabilities, but does not support the
// logic fragement in which these properties are expressed, e.g., alternations of
// logic fragment in which these properties are expressed, e.g., alternations of
// temporal operators (i.e., always and eventually), and set quantifieres (forall).
// We should
// either find human arguments to support them, or write some test cases to capture
Expand Down

0 comments on commit 756972f

Please sign in to comment.