fix small typo in presentation
authorMart Lubbers <mart@martlubbers.net>
Wed, 12 Jul 2017 18:24:25 +0000 (20:24 +0200)
committerMart Lubbers <mart@martlubbers.net>
Wed, 12 Jul 2017 18:24:25 +0000 (20:24 +0200)
pres.mtask.tex

index 4b6f7d6..52115ae 100644 (file)
@@ -124,12 +124,12 @@ Plus x y = \e -> x e + y e
 :: Evaluator a = Evaluator (Env -> a)
 :: PrettyPrinter a = PP String
 
-class intArith where
+class intArith where
        lit   :: t -> v t | toString t
        add   :: (v t) (v t) -> (v t) | + t
        minus :: (v t) (v t) -> (v t) | - t
 
-class boolArith where ...
+class boolArith where ...
 
 instance intArith Evaluator where
        lit x   = Evaluator \e->x