Skip to content

Commit fd3a38e

Browse files
committed
Part 1 Chapter 7 Exercise 5, typo correction.
1 parent d28e494 commit fd3a38e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

part1_chapter7_exercise5/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ curried = \x y -> x - y
2323
-- so very happy the below was my first guess :D
2424
-- curry :: (a, b) -> c -> (a -> b -> c)
2525
-- The actual signature is taken from the solutions sections, though.
26-
-- I had to make sure what the exercise really is.
26+
-- I had to make sure what the exercise really was.
2727
curry' :: (Num a, Num b, Num c) => ((a, b) -> c) -> (a -> b -> c)
2828
curry' x = \y z -> x (y, z)
2929

0 commit comments

Comments
 (0)