Skip to content

Commit 433ad7d

Browse files
Update src/Collections/Maps/Maps.dfy
Co-authored-by: Mikaël Mayer <MikaelMayer@users.noreply.github.com>
1 parent 9f1df71 commit 433ad7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Collections/Maps/Maps.dfy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ module {:options "-functionSyntax:4"} Maps {
131131
forall x, x' {:trigger m[x], m[x']} :: x in m && x' in m && start <= x <= x' ==> m[x] <= m[x']
132132
}
133133

134-
/* Map an injective function over the keys of a map, retaining the values. */
134+
/* Maps an injective function over the keys of a map, retaining the values. */
135135
function {:opaque} MapKeys<X(!new), Y, X'>(m: map<X, Y>, f: X --> X'): (m': map<X', Y>)
136136
reads f.reads
137137
requires forall x {:trigger f.requires(x)} :: f.requires(x)

0 commit comments

Comments
 (0)