From 7d8067513966af6ab0073802ff7ab319eabd96bc Mon Sep 17 00:00:00 2001 From: Thomas Mahler Date: Thu, 16 Apr 2020 22:00:31 +0200 Subject: [PATCH] remove misplaced reference to even --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 9dad9bb..3dd2d1d 100644 --- a/README.md +++ b/README.md @@ -329,8 +329,7 @@ The Haskell code is straightforward: new ingredients are the `if ... then ... el odd `odd` which is a predicate from the Haskell standard library that returns `True` if an integral number is odd. -Now let's assume that we also need another function that computes the square for any odd number. -As you can imagine we can use the standard library predicate `even`: +Now let's assume that we also need another function that computes the square for any odd number: ```haskell ifOddSquare :: Integer -> Integer