ambiguous "identify"
authorjim <jim@web>
Thu, 19 Mar 2015 23:03:28 +0000 (19:03 -0400)
committerLinux User <ikiwiki@localhost.members.linode.com>
Thu, 19 Mar 2015 23:03:28 +0000 (19:03 -0400)
topics/week7_introducing_monads.mdwn

index 3b92b61..23f4ff6 100644 (file)
@@ -226,7 +226,7 @@ Contrast that to `m$` (`mapply`, which operates not on two *box-producing functi
     mapply js xs ==> [49, 25, 14, 10]
 
 
-As we illustrated in class, there are clear patterns shared between lists and option types and trees, so perhaps you can see why people want to identify the general structures. But it probably isn't obvious yet why it would be useful to do so. To a large extent, this will only emerge over the next few classes. But we'll begin to demonstrate the usefulness of these patterns by talking through a simple example, that uses the monadic functions of the Option/Maybe box type.
+As we illustrated in class, there are clear patterns shared between lists and option types and trees, so perhaps you can see why people want to figure out the general structures. But it probably isn't obvious yet why it would be useful to do so. To a large extent, this will only emerge over the next few classes. But we'll begin to demonstrate the usefulness of these patterns by talking through a simple example, that uses the monadic functions of the Option/Maybe box type.
 
 
 ## Safe division ##