Skip to content

Commit b6d48da

Browse files
committed
Fix some typos and rename s_eq props for different types
1 parent 65ad789 commit b6d48da

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

theories/Storage/Classes.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Section Setoid.
9494
Equivalence_Transitive := s_eq_transitive;
9595
|}.
9696

97-
Global Instance s_eq_setiod : Setoid t :=
97+
Global Instance s_eq_setoid : Setoid t :=
9898
{|
9999
equiv := s_eq;
100100
setoid_equiv := s_eq_equiv;

theories/Storage/Properties.v

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,19 @@ End basic.
5353
Section s_eq.
5454
Context {t1 t2} `{Storage t1} `{Storage t2}.
5555

56-
Lemma s_eq_refl a :
56+
Lemma s_eq_refl_dist a :
5757
a =s= a.
5858
Proof.
5959
sauto.
6060
Qed.
6161

62-
Lemma s_eq_trans a b c :
62+
Lemma s_eq_trans_dist a b c :
6363
a =s= b -> b =s= c -> a =s= c.
6464
Proof.
6565
sauto.
6666
Qed.
6767

68-
Lemma s_eq_symm a b :
68+
Lemma s_eq_symm_dist a b :
6969
a =s= b -> b =s= a.
7070
Proof.
7171
sauto.
@@ -185,7 +185,7 @@ Section wlog_props.
185185
intros H12 H23 s.
186186
specialize (H12 s).
187187
specialize (H23 s).
188-
eapply s_eq_trans; eauto.
188+
eapply s_eq_trans_dist; eauto.
189189
Qed.
190190

191191
Lemma wlog_equiv_refl l :
@@ -199,7 +199,7 @@ Section wlog_props.
199199
wlog_equiv l1 l2 -> wlog_equiv l2 l1.
200200
Proof.
201201
intros H12 s. specialize (H12 s).
202-
now apply s_eq_symm.
202+
now apply s_eq_symm_dist.
203203
Qed.
204204

205205
Global Instance Wlog_refl : Reflexive wlog_equiv := wlog_equiv_refl.

0 commit comments

Comments
 (0)