Skip to content

Commit

Permalink
Typo fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrandonw authored Jan 7, 2019
1 parent 906ee5c commit 4a997c3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
6.) Define a `flatMap` method on the `Func<A, B>` type. Its signature looks like:

```
(Func<A, B>, (B) -> C) -> Func<A, C>
(Func<A, B>, (B) -> Func<A, C>) -> Func<A, C>
```

It only changes the `B` generic while leaving the `A` fixed.
Expand All @@ -52,7 +52,7 @@
8.) Define a `flatMap` method on the `Parallel<A>` type. Its signature looks like:

```
(Parallel<A>, (A) -> B) -> Parallel<B>
(Parallel<A>, (A) -> Parallel<B>) -> Parallel<B>
```
*/
// TODO
Expand Down

0 comments on commit 4a997c3

Please sign in to comment.