Skip to content

Commit

Permalink
Merge pull request sdiehl#79 from da-x/master
Browse files Browse the repository at this point in the history
Fix an occurrence of 'Just' in a type signature where Maybe should have been
  • Loading branch information
sdiehl committed Mar 7, 2016
2 parents f8c3d19 + 41a9f89 commit 0aaf1fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 009_datatypes.md
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ Wadler's Algorithm
Consider the task of expanding

```haskell
f :: Just (Either a b) -> Int
f :: Maybe (Either a b) -> Int
f (Just (Left x)) = 1
f (Just (Right x)) = 2
f Nothing = 3
Expand Down

0 comments on commit 0aaf1fe

Please sign in to comment.