aboutsummaryrefslogtreecommitdiff
path: root/mathcomp/ssreflect/path.v
diff options
context:
space:
mode:
authorKazuhiko Sakaguchi2020-05-16 09:02:13 +0900
committerKazuhiko Sakaguchi2020-05-16 09:30:39 +0900
commit37a49513f22a3f792a1ac3241962a7d17455f7e5 (patch)
tree3f3f5a094547ae1166a21cb7c5350c7e5a87404a /mathcomp/ssreflect/path.v
parent35bd8708dacfb508f896d957d7b1189ca7decb3e (diff)
A few more revisions
Diffstat (limited to 'mathcomp/ssreflect/path.v')
-rw-r--r--mathcomp/ssreflect/path.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/mathcomp/ssreflect/path.v b/mathcomp/ssreflect/path.v
index 060a2ca..6e72af0 100644
--- a/mathcomp/ssreflect/path.v
+++ b/mathcomp/ssreflect/path.v
@@ -1167,7 +1167,7 @@ Qed.
Lemma cycle_from_next : (forall x, x \in p -> e x (next p x)) -> cycle e p.
Proof.
case: p (next p) cycle_next => //= [x q] n; rewrite -(belast_rcons x q x).
-move: {q}(rcons q x) => q n_q; move/allP.
+move: {q}(rcons q x) => q n_q /allP.
by elim: q x n_q => //= _ q IHq x /andP[/eqP <- n_q] /andP[-> /IHq->].
Qed.