Skip to content

Commit

Permalink
Fix minor typo in ListT FAQ
Browse files Browse the repository at this point in the history
  • Loading branch information
ceedubs committed Jul 24, 2016
1 parent 1966061 commit e3e4f42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/tut/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ l.exists(_.exists(isEven))

A naive implementation of `ListT` suffers from associativity issues; see [this gist](https://gist.github.com/tpolecat/1227e22e3161b5816e014c00650f3b57) for an example. It's possible to create a `ListT` that doesn't have these issues, but it tends to be pretty inefficient. For many use-cases, [Nested](https://github.com/typelevel/cats/blob/master/core/src/main/scala/cats/data/Nested.scala) can be used to achieve the desired results.

Here is how we could achieve the effect ofthe previous example using `Nested`:
Here is how we could achieve the effect of the previous example using `Nested`:

```tut:silent
import cats.data.Nested
Expand Down

0 comments on commit e3e4f42

Please sign in to comment.