Skip to content

Commit

Permalink
Fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dnezam committed Feb 20, 2024
1 parent e6510fc commit 6b72126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dicts/dicts.gobra
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ pure func IsEqualOnKey(d1, d2 dict[int]int, k int) bool {
(k in domain(d1) && k in domain(d2) && d1[k] == d2[k])
}

// True iff and only if d1 is a subset of d2.
// True iff if d1 is a subset of d2.
ghost
decreases
pure func IsSubset(d1, d2 dict[int]int) bool {
Expand Down

0 comments on commit 6b72126

Please sign in to comment.