aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Arith/Factorial.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Arith/Factorial.v')
-rw-r--r--theories/Arith/Factorial.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Arith/Factorial.v b/theories/Arith/Factorial.v
index 1dd5ce16c..146546dc1 100644
--- a/theories/Arith/Factorial.v
+++ b/theories/Arith/Factorial.v
@@ -19,7 +19,7 @@ Fixpoint fact (n:nat) : nat :=
| S n => S n * fact n
end.
-Arguments Scope fact [nat_scope].
+Arguments fact n%nat.
Lemma lt_O_fact : forall n:nat, 0 < fact n.
Proof.