From 81869b1be2718d071cc9686019af691642616ba4 Mon Sep 17 00:00:00 2001 From: chris Date: Sun, 29 Mar 2015 21:57:50 -0400 Subject: [PATCH 1/1] --- topics/_week8_reader_monad.mdwn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/topics/_week8_reader_monad.mdwn b/topics/_week8_reader_monad.mdwn index 557bd2f9..9266ab34 100644 --- a/topics/_week8_reader_monad.mdwn +++ b/topics/_week8_reader_monad.mdwn @@ -19,8 +19,8 @@ The starting point was to allow the division function to return an int option instead of an int. If we divide 6 by 2, we get the answer Just 3. But if we divide 6 by 0, we get the answer Nothing. -The next step was to adjust the other arithmetic functions to know how -to handle receiving Nothing instead of a (boxed) integer. This meant +The next step was to adjust the other arithmetic functions to teach them what to do if they received Nothing instead of a boxed integer. +This meant changing the type of their input from ints to int options. But we didn't need to do this piecemeal; rather, we could "lift" the ordinary arithmetic operations into the monad using the various tools provided -- 2.11.0