aboutsummaryrefslogtreecommitdiff
path: root/parsing
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2018-11-19 13:34:43 +0100
committerPierre-Marie Pédrot2018-11-19 13:34:43 +0100
commitdf2757b19b2be69aa2e026343221dbe185e3a0df (patch)
tree795c4814902463a25e0c59e7045b9690cc8dd74f /parsing
parentc54edf206c0e3ca58d1d6b1d53ac37267a67415b (diff)
parentdd198266ff91f619213e0160961b96f2654c59d6 (diff)
Merge PR #9023: [gramlib] Remove unused alias.
Diffstat (limited to 'parsing')
-rw-r--r--parsing/pcoq.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/parsing/pcoq.ml b/parsing/pcoq.ml
index eb3e633892..d4aa598fd8 100644
--- a/parsing/pcoq.ml
+++ b/parsing/pcoq.ml
@@ -59,7 +59,7 @@ module type S =
type e 'a = 'y;
value create : string -> e 'a;
value parse : e 'a -> parsable -> 'a;
- value parse_token : e 'a -> Stream.t te -> 'a;
+ value parse_token_stream : e 'a -> Stream.t te -> 'a;
value name : e 'a -> string;
value of_parser : string -> (Stream.t te -> 'a) -> e 'a;
value print : Format.formatter -> e 'a -> unit;