From: Jim Pryor Date: Mon, 13 Dec 2010 01:59:55 +0000 (-0500) Subject: # use X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=commitdiff_plain;h=b7e79cc4e5a802b16cec8d1832de2bf646a64879 # use Signed-off-by: Jim Pryor --- diff --git a/state_monad_tutorial.mdwn b/state_monad_tutorial.mdwn index d878edca..b15ac297 100644 --- a/state_monad_tutorial.mdwn +++ b/state_monad_tutorial.mdwn @@ -95,7 +95,7 @@ If we wanted to work with one of the encapsulation techniques described above, w Here is how you'd have to do it using our OCaml monad library: - # use "path/to/monads.ml";; + # #use "path/to/monads.ml";; # module S = State_monad(struct type store = store' end);; # let increment_store'' : ('x,'a) S.m = S.(get >>= fun cur ->