X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=state_monad_tutorial.mdwn;h=b15ac297c192d40e5336fd8bc672f975aab63a23;hp=d878edca8964083b6b7dfd040eee5b8d061c4936;hb=9a23d7fc448e48268a7b60ce9ff3e55222cd833a;hpb=2f6e770665caa164a2c608417954b24359b10f56 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 ->