Skip to content

Commit

Permalink
Use tut:silent for Traverse example
Browse files Browse the repository at this point in the history
As per comment on typelevel#1185
  • Loading branch information
richardmiller authored Jul 12, 2016
1 parent 3538140 commit e0e10a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/tut/traverse.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ hold true in this case?
Given just `User => Future[Profile]`, what should we do if we want to fetch profiles for a `List[User]`?
We could try familiar combinators like `map`.

```tut:book
```tut:silent
def profilesFor(users: List[User]): List[Future[Profile]] = users.map(userInfo)
```

Expand Down

0 comments on commit e0e10a2

Please sign in to comment.