assign7 tweak
authorJim Pryor <profjim@jimpryor.net>
Mon, 22 Nov 2010 10:44:43 +0000 (05:44 -0500)
committerJim Pryor <profjim@jimpryor.net>
Mon, 22 Nov 2010 10:44:43 +0000 (05:44 -0500)
Signed-off-by: Jim Pryor <profjim@jimpryor.net>
assignment7.mdwn

index 9be93e7..5db178b 100644 (file)
@@ -7,7 +7,7 @@
 
        Write a monadic operation that enables you to retrieve the last-saved remainder, at any arbitrary later point in the computation. For example, you want to be able to calculate expressions like this:
 
-               (((some_long_computation / 12) + 5) - most_recent_remainder) * 2 - same_most_recent_remainder +1
+               (((some_long_computation / 12) + 5) - most_recent_remainder) * 2 - same_most_recent_remainder + 1
 
        The remainder here is retrieved later than (and in addition to) the division it's the remainder of. It's also retrieved more than once. Suppose a given remainder remains retrievable until the next division is performed.