summaryrefslogtreecommitdiff
path: root/src/gen_lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/gen_lib')
-rw-r--r--src/gen_lib/prompt.lem1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gen_lib/prompt.lem b/src/gen_lib/prompt.lem
index 77a39096..744b6f7f 100644
--- a/src/gen_lib/prompt.lem
+++ b/src/gen_lib/prompt.lem
@@ -25,7 +25,6 @@ let rec bind m f = match m with
| Internal descr o_s -> Internal descr (let (o,opt) = o_s in (bind o f ,opt))
end
-
let inline (>>=) = bind
val (>>) : forall 'b 'e. M unit 'e -> M 'b 'e -> M 'b 'e
let inline (>>) m n = m >>= fun (_ : unit) -> n