Skip to content

Commit

Permalink
2.12.x no longer needs future-tense (typelevel#2211)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkohl authored and guizmaii committed Mar 24, 2018
1 parent 0ace02d commit 2370fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/tut/datatypes/either.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ e2.right.map(_ + 1)
Note the return types are themselves back to `Either`, so if we want to make more calls to
`flatMap` or `map` then we again must call `right` or `left`.

However, the convention is almost always to right-bias `Either`. Indeed in Scala 2.12.x `Either` will be
However, the convention is almost always to right-bias `Either`. Indeed in Scala 2.12.x `Either` is
[right-biased](https://github.com/scala/scala/pull/5135) by default.

More often than not we want to just bias towards one side and call it a day - by convention,
Expand Down

0 comments on commit 2370fed

Please sign in to comment.