aboutsummaryrefslogtreecommitdiff
path: root/user-contrib
diff options
context:
space:
mode:
authorMaxime Dénès2020-02-28 20:19:00 +0100
committerMaxime Dénès2020-03-01 20:33:28 +0100
commit7ebcbc1cecca87619aa4b01606021c29c5d1f0a2 (patch)
tree082951992155940f3f6919568f5541e954aabfb8 /user-contrib
parent38e57715c086183250dd6176f9eaad01bfcde4c5 (diff)
[parser] lk_int -> lk_nat
Diffstat (limited to 'user-contrib')
-rw-r--r--user-contrib/Ltac2/g_ltac2.mlg2
1 files changed, 1 insertions, 1 deletions
diff --git a/user-contrib/Ltac2/g_ltac2.mlg b/user-contrib/Ltac2/g_ltac2.mlg
index ad6949b899..a0984aa2a9 100644
--- a/user-contrib/Ltac2/g_ltac2.mlg
+++ b/user-contrib/Ltac2/g_ltac2.mlg
@@ -27,7 +27,7 @@ let lk_ident_or_anti =
let test_lpar_idnum_coloneq =
let open Pcoq.Lookahead in
to_entry "test_lpar_idnum_coloneq" begin
- lk_kw "(" >> (lk_ident_or_anti <+> lk_int) >> lk_kw ":="
+ lk_kw "(" >> (lk_ident_or_anti <+> lk_nat) >> lk_kw ":="
end
(* lookahead for (x:t), (?x:t) *)