diff --git a/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/Either.kt b/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/Either.kt index b38b2da259..7395908927 100644 --- a/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/Either.kt +++ b/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/Either.kt @@ -457,7 +457,7 @@ public typealias EitherNel = Either, A> * ``` * * - * 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. *