Skip to content

Commit

Permalink
Remove deprecated getHandle() from KDoc in Either (#3544)
Browse files Browse the repository at this point in the history
It was not removed in #3012
  • Loading branch information
illarionov authored Dec 10, 2024
1 parent 629b2f8 commit e612c10
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ public typealias EitherNel<E, A> = Either<NonEmptyList<E>, A>
* ```
* <!--- KNIT example-either-19.kt -->
*
* The `getOrHandle()` operation allows the transformation of an `Either.Left` value to a `Either.Right` using
* The `getOrElse()` operation allows the transformation of an `Either.Left` value to a `Either.Right` using
* the value of [Left]. This can be useful when mapping to a single result type is required like `fold()`, but without
* the need to handle `Either.Right` case.
*
Expand Down

0 comments on commit e612c10

Please sign in to comment.