Skip to content

Commit b279ee6

Browse files
authored
Merge pull request #170 from pleeric/whatthefunctorarc
missing square parameter
2 parents ce0644c + 23897d5 commit b279ee6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_chapters/haskell3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -869,7 +869,7 @@ This will allow us to make more functions point-free
869869

870870
```haskell
871871
square :: Num a => a => a
872-
square = a * a
872+
square a = a * a
873873
```
874874

875875
```haskell

0 commit comments

Comments
 (0)