Skip to content

Commit

Permalink
Merge pull request #206 from tycho01/patch-1
Browse files Browse the repository at this point in the history
traverse: Apply -> Applicative
  • Loading branch information
joneshf authored Dec 8, 2016
2 parents 7a1a2d7 + 469fd3a commit 2d88537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ Compose.prototype.map = function(f) {
#### `traverse` method

```hs
traverse :: Apply f, Traversable t => t a ~> (a -> f b, c -> f c) -> f (t b)
traverse :: Applicative f, Traversable t => t a ~> (a -> f b, c -> f c) -> f (t b)
```

A value which has a Traversable must provide a `traverse` method. The `traverse`
Expand Down

0 comments on commit 2d88537

Please sign in to comment.