assignment7 tweaks
authorJim Pryor <profjim@jimpryor.net>
Thu, 18 Nov 2010 22:52:09 +0000 (17:52 -0500)
committerJim Pryor <profjim@jimpryor.net>
Thu, 18 Nov 2010 22:52:09 +0000 (17:52 -0500)
Signed-off-by: Jim Pryor <profjim@jimpryor.net>
hints/assignment_7_hint_3.mdwn

index 7cc2e74..53731f7 100644 (file)
@@ -41,15 +41,15 @@ More specifically, \[[expression]] will be a set of `'a discourse_possibility` m
 
        We can call the `(fun (r, g) -> ...)` part \[[Qx]] and then updating `s` with \[[Qx]] will be:
 
-               bind_set s [[Qx]]
+               bind_set s \[[Qx]]
 
        or as it's written using Haskell's infix notation for bind:
 
-               s >>= [[Qx]]
+               s >>= \[[Qx]]
 
 *      Now how shall we handle \[[&exist;x]]. As we said, GS&V really tell us how to interpret \[[&exist;xPx]], but what they say about this breaks naturally into two pieces, such that we can represent the update of `s` with \[[&exist;xPx]] as:
 
-               s >>= [[&exist;x]] >>= [[Px]]
+               s >>= \[[&exist;x]] >>= \[[Px]]