Skip to content

Commit

Permalink
Remove extra 'a' in eithert.md (#2218)
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldosalas authored and Luka Jacobowitz committed Mar 27, 2018
1 parent 1f8e5d9 commit 0a3a9f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/tut/datatypes/eithert.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ val error: EitherT[Option, String, Int] = EitherT.left(errorO)

## From `Either[A, B]` or `F[Either[A, B]]` to `EitherT[F, A, B]`

Use `EitherT.fromEither` to a lift a value of `Either[A, B]` into `EitherT[F, A, B]`.
Use `EitherT.fromEither` to lift a value of `Either[A, B]` into `EitherT[F, A, B]`.
An `F[Either[A, B]]` can be converted into `EitherT` using the `EitherT` constructor.

```tut:silent
Expand Down

0 comments on commit 0a3a9f1

Please sign in to comment.