diff --git a/categories.html b/categories.html index 6e3e192..13781b6 100644 --- a/categories.html +++ b/categories.html @@ -709,7 +709,7 @@ Haskell types is fractal:

Natural Transformation Examples (1/4)

data List a = Nil | Cons a (List a)
-toList :: [a] -> Tree a
+toList :: [a] -> List a
 toList [] = Nil
 toList (x:xs) = Cons x (toList xs)
diff --git a/output.pdf b/output.pdf index 3cc92ab..e243792 100644 Binary files a/output.pdf and b/output.pdf differ