aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Scratch/fermat.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Scratch/fermat.v b/src/Scratch/fermat.v
index 7871db92f..947ffce15 100644
--- a/src/Scratch/fermat.v
+++ b/src/Scratch/fermat.v
@@ -42,7 +42,7 @@ Section Fq.
Axiom inv : Fq -> Fq.
Axiom inv_spec : forall a, inv a * a = one.
- Definition div a b := add a (inv b).
+ Definition div a b := mul a (inv b).
Infix "/" := div.
Fixpoint replicate {T} n (x:T) : list T := match n with O => nil | S n' => x::replicate n' x end.