aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Zarith/Zsyntax.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Zarith/Zsyntax.v')
-rw-r--r--theories/Zarith/Zsyntax.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/theories/Zarith/Zsyntax.v b/theories/Zarith/Zsyntax.v
index bdb5ca7a8..3825fd86b 100644
--- a/theories/Zarith/Zsyntax.v
+++ b/theories/Zarith/Zsyntax.v
@@ -49,7 +49,7 @@ with expr1 :=
with expr0 :=
expr_id [ ident($c) ] -> [$c]
-| expr_com [ "[" command:command($c) "]" ] -> [$c]
+| expr_com [ "[" constr:constr($c) "]" ] -> [$c]
| expr_appl [ "(" application($a) ")" ] -> [$a]
| expr_num [ number($s) ] -> [$s ]
| expr_negnum [ "-" negnumber($n) ] -> [ $n ]
@@ -61,10 +61,10 @@ with application :=
| appl0 [ expr($a) ] -> [$a]
.
-Grammar command command0 :=
+Grammar constr constr0 :=
z_in_com [ "`" znatural:formula($c) "`" ] -> [$c].
-Grammar command atomic_pattern :=
+Grammar constr pattern :=
z_in_pattern [ "`" znatural:number($c) "`" ] -> [$c].
(* The symbols "`" "`" must be printed just once at the top of the expession,