Skip to content

Commit

Permalink
unnecessary parens
Browse files Browse the repository at this point in the history
  • Loading branch information
t6s committed Mar 10, 2024
1 parent 8069cbf commit 48ff7f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ssrR.v
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ Section temporary_lemmas.
Local Open Scope ring_scope.

Lemma sumRE (I : Type) (r : seq I) (P : pred I) (F : I -> R) :
(\sum_(i <- r | P i) F i)%coqR = (\sum_(i <- r | P i) F i).
(\sum_(i <- r | P i) F i)%coqR = \sum_(i <- r | P i) F i.
Proof. by []. Qed.

Lemma bigmaxRE (I : Type) (r : seq I) (P : pred I) (F : I -> R) :
Expand Down

0 comments on commit 48ff7f0

Please sign in to comment.