edits
[lambda.git] / week7.mdwn
index 52bc8eb..f511404 100644 (file)
@@ -115,9 +115,9 @@ val unit : 'a -> 'a option = <fun>
 </pre>
 
        The parentheses is the magic for telling Ocaml that the
-       function to be defined (in this case, the name of the function
-       is `*`, pronounced "bind") is an infix operator, so we write
-       `m * f` or `( * ) m f` instead of `* m f`.
+function to be defined (in this case, the name of the function
+is `*`, pronounced "bind") is an infix operator, so we write
+`m * f` or `( * ) m f` instead of `* m f`.
 
 *    Associativity: bind obeys a kind of associativity, like this: