Skip to content

Commit

Permalink
rm whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kailuowang authored Jan 10, 2018
1 parent a6ffd00 commit 60e9227
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/scala/cats/syntax/either.scala
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ final class EitherIdOps[A](val obj: A) extends AnyVal {
* For example:
* {{{
* scala> import cats.implicits._, cats.data.NonEmptyList
* scala> "Err".leftNel[Int]
* scala> "Err".leftNel[Int]
* res0: Either[NonEmptyList[String], Int] = Left(NonEmptyList(Err))
* }}}
*/
Expand All @@ -348,7 +348,7 @@ final class EitherIdOps[A](val obj: A) extends AnyVal {
* For example:
* {{{
* scala> import cats.implicits._, cats.data.NonEmptyList
* scala> 1.rightNel[String]
* scala> 1.rightNel[String]
* res0: Either[NonEmptyList[String], Int] = Right(1)
* }}}
*/
Expand Down

0 comments on commit 60e9227

Please sign in to comment.