aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Andres Erbsen <andreser@mit.edu>2016-01-07 15:03:32 -0500
committerGravatar Andres Erbsen <andreser@mit.edu>2016-01-07 15:03:32 -0500
commitba1053c19ee10cfb2f28318d2fab8577d56eb749 (patch)
tree310dfd6b7d52f5a701d8435b0951fa0d6bed9e0f /src
parenta1ab6f7b47173ff927958a19b952f26078ddf373 (diff)
fix unverified typo in fermat proof
Diffstat (limited to 'src')
-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.