aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornlewycky2019-04-08 14:47:01 -0700
committerGitHub2019-04-08 14:47:01 -0700
commitfc954b961d2ec51e9ec24417b63e4247f93424a3 (patch)
tree9f023ad4bb5d6838855f71a1c1e0908c345a2f6d
parent70a00b72035be1f5c3900a78df97d7350cc70bb6 (diff)
Fix spelling in comment.
Fix spelling (French fonction --> English function).
-rw-r--r--theories/Arith/PeanoNat.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Arith/PeanoNat.v b/theories/Arith/PeanoNat.v
index bc58995fd6..c46c23ad60 100644
--- a/theories/Arith/PeanoNat.v
+++ b/theories/Arith/PeanoNat.v
@@ -52,7 +52,7 @@ Proof.
intros A A_wd A0 AS. apply nat_ind. assumption. intros; now apply -> AS.
Qed.
-(** Recursion fonction *)
+(** Recursion function *)
Definition recursion {A} : A -> (nat -> A -> A) -> nat -> A :=
nat_rect (fun _ => A).