aboutsummaryrefslogtreecommitdiff
path: root/intf
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2016-05-10 11:11:39 +0200
committerPierre-Marie Pédrot2016-05-10 19:28:24 +0200
commit61f79019be6082c3ebabd503c322fb2edb05a99a (patch)
tree646aaa9d5fbf289354f86f2b912a234fca7b6c20 /intf
parent946a3d4a800ae1f459cb67cc15c9e6ec44fb3f94 (diff)
AlistNsep token now accepts an arbitrary separator.
Diffstat (limited to 'intf')
-rw-r--r--intf/extend.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/intf/extend.mli b/intf/extend.mli
index bf5a18c47d..7ba332f709 100644
--- a/intf/extend.mli
+++ b/intf/extend.mli
@@ -69,9 +69,9 @@ type 'a user_symbol =
type ('self, 'a) symbol =
| Atoken : Tok.t -> ('self, string) symbol
| Alist1 : ('self, 'a) symbol -> ('self, 'a list) symbol
-| Alist1sep : ('self, 'a) symbol * string -> ('self, 'a list) symbol
+| Alist1sep : ('self, 'a) symbol * ('self, _) symbol -> ('self, 'a list) symbol
| Alist0 : ('self, 'a) symbol -> ('self, 'a list) symbol
-| Alist0sep : ('self, 'a) symbol * string -> ('self, 'a list) symbol
+| Alist0sep : ('self, 'a) symbol * ('self, _) symbol -> ('self, 'a list) symbol
| Aopt : ('self, 'a) symbol -> ('self, 'a option) symbol
| Aself : ('self, 'self) symbol
| Anext : ('self, 'self) symbol