Skip to content

Commit b47d767

Browse files
committed
minor
1 parent ff18957 commit b47d767

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

core/seqext.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2666,7 +2666,7 @@ apply: IH=>//.
26662666
by move=>z1 z2 Hz1 Hz2 N; apply: H2=>//; right.
26672667
Qed.
26682668

2669-
Lemma big_cat_uniq_pairewriteise A (B : eqType) xs (f : A -> seq B) x1 x2 :
2669+
Lemma big_cat_uniq_pairwise A (B : eqType) xs (f : A -> seq B) x1 x2 :
26702670
uniq (\big[cat/[::]]_(x <- xs) f x) ->
26712671
x1 \In xs ->
26722672
x2 \In xs ->

pcm/unionmap.v

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ limitations under the License.
4646
(* increasing order. *)
4747
(* um_foldl a z0 d f == if f is valid, a result of a left fold over its *)
4848
(* key-value pairs using function a and starting *)
49-
(* value z0, d otherewriteise. *)
49+
(* value z0, d otherwise. *)
5050
(* um_foldr a z0 d f == if f is valid, a result of a right fold over its *)
5151
(* key-value pairs using function a and starting *)
5252
(* value z0, d otherise. *)
@@ -2205,7 +2205,7 @@ move=>k v g H V1; move: (H3 k v _ H); rewrite !umEX.
22052205
by apply.
22062206
Qed.
22072207

2208-
(* validity holds pairewriteise *)
2208+
(* validity holds pairwise *)
22092209
Lemma um_valid3 f1 f2 f3 :
22102210
valid (f1 \+ f2 \+ f3) =
22112211
[&& valid (f1 \+ f2), valid (f2 \+ f3) & valid (f1 \+ f3)].
@@ -3684,7 +3684,7 @@ HB.instance Definition _ :=
36843684
HB.end.
36853685

36863686
(* notation to hide the structure when projecting omf *)
3687-
Section OmapFunAbbreviation.
3687+
Section OmapFunNotation.
36883688
Variables (K : ordType) (C : pred K) (V V' : Type).
36893689
Variables (U : union_map K C V) (U' : union_map K C V').
36903690

@@ -3695,7 +3695,7 @@ Abbreviation omf f := (omfx (Phantom (_ -> _) f)).
36953695

36963696
Lemma omfE (f : omap_fun U U') : f =1 omap (omf f).
36973697
Proof. exact: omfE_op. Qed.
3698-
End OmapFunAbbreviation.
3698+
End OmapFunNotation.
36993699

37003700
Abbreviation omf f := (omfx (Phantom (_ -> _) f)).
37013701

0 commit comments

Comments
 (0)