Skip to content

Commit e612c10

Browse files
authored
Remove deprecated getHandle() from KDoc in Either (#3544)
It was not removed in #3012
1 parent 629b2f8 commit e612c10

File tree

1 file changed

+1
-1
lines changed
  • arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core

1 file changed

+1
-1
lines changed

arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/Either.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ public typealias EitherNel<E, A> = Either<NonEmptyList<E>, A>
457457
* ```
458458
* <!--- KNIT example-either-19.kt -->
459459
*
460-
* The `getOrHandle()` operation allows the transformation of an `Either.Left` value to a `Either.Right` using
460+
* The `getOrElse()` operation allows the transformation of an `Either.Left` value to a `Either.Right` using
461461
* the value of [Left]. This can be useful when mapping to a single result type is required like `fold()`, but without
462462
* the need to handle `Either.Right` case.
463463
*

0 commit comments

Comments
 (0)