(no commit message)
[lambda.git] / code / monad_library.mdwn
index 1761e61..a9418b8 100644 (file)
@@ -132,7 +132,7 @@ Some comments on the design of this library.
                type ('r,'b) m = ('b -> 'r) -> 'r
 
        and there both `'r` and `'b` need to be free type variables. Since we want to allow you to layer Continuation monads with the others, it vastly simplified the library to make all of the monadic types take two type parameters, even though the second will only be used by a Continuation monad you may have stacked in the monadic bundle you're using. You can pretty much ignore this; think of the `S.(unit 1)` as though it just had the type `int S.m`.
-       
+
 
 *      The implementation of most monadic types is **hidden**. Above, when we wanted to supply an `initial_store` to a value `u` of type `('a,'b) S.m`, we did this: