Skip to content

Commit

Permalink
Merge pull request #979 from Astrac/patch-1
Browse files Browse the repository at this point in the history
Fix outdated import for `cats.syntax.apply._`
  • Loading branch information
ceedubs committed Apr 13, 2016
2 parents 26efefa + ca09eaf commit 4496a59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/tut/apply.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Apply[Option].tuple3(Some(1), Some(2), Some(3))

The `|@|` operator offers an alternative syntax for the higher-arity `Apply`
functions (`apN`, `mapN` and `tupleN`).
In order to use it, first import `cats.syntax.all._` or `cats.syntax.apply._`.
In order to use it, first import `cats.syntax.all._` or `cats.syntax.cartesian._`.
Here we see that the following two functions, `f1` and `f2`, are equivalent:

```tut
Expand Down

0 comments on commit 4496a59

Please sign in to comment.