aboutsummaryrefslogtreecommitdiff
path: root/parsing/extend.ml
diff options
context:
space:
mode:
authorHugo Herbelin2018-05-03 09:11:18 +0200
committerHugo Herbelin2018-06-03 20:33:00 +0200
commit9075aa75fa4f10cab85273201b9b82dd78affef5 (patch)
tree4e7db2e99ff6fc2dd05d949305bc6abbe3e1cb6a /parsing/extend.ml
parentc2279eea0b8666282e640637a74947ba554627d6 (diff)
Statment -> Statement
Diffstat (limited to 'parsing/extend.ml')
-rw-r--r--parsing/extend.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/parsing/extend.ml b/parsing/extend.ml
index f2af594ef4..6805a96edc 100644
--- a/parsing/extend.ml
+++ b/parsing/extend.ml
@@ -116,7 +116,7 @@ and 'a rules =
type 'a production_rule =
| Rule : ('a, 'act, Loc.t -> 'a) rule * 'act -> 'a production_rule
-type 'a single_extend_statment =
+type 'a single_extend_statement =
string option *
(** Level *)
gram_assoc option *
@@ -124,6 +124,6 @@ type 'a single_extend_statment =
'a production_rule list
(** Symbol list with the interpretation function *)
-type 'a extend_statment =
+type 'a extend_statement =
gram_position option *
- 'a single_extend_statment list
+ 'a single_extend_statement list