From e94fc4daa7bd459a99be6a4c4d3d3a4de6a0e469 Mon Sep 17 00:00:00 2001 From: valery1707 Date: Thu, 29 Sep 2022 14:00:55 +0300 Subject: [PATCH] Fix typo (#2824) --- .../core/arrow-core/src/commonMain/kotlin/arrow/core/Ior.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/Ior.kt b/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/Ior.kt index a2f6b55a503..9983e985121 100644 --- a/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/Ior.kt +++ b/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/Ior.kt @@ -23,7 +23,7 @@ public typealias IorNel = Ior, B> * [Ior]<`A`,`B`> is similar to [Either]<`A`,`B`>, except that it can represent the simultaneous presence of * an `A` and a `B`. It is right-biased so methods such as `map` and `flatMap` operate on the * `B` value. Some methods, like `flatMap`, handle the presence of two [Ior.Both] values using a - * `[Semigroup]<`A`>, while other methods, like [toEither], ignore the `A` value in a [Ior.Both Both]. + * [Semigroup]<`A`>, while other methods, like [toEither], ignore the `A` value in a [Ior.Both Both]. * * [Ior]<`A`,`B`> is isomorphic to [Either]<[Either]<`A`,`B`>, [Pair]<`A`,`B`>>, but provides methods biased toward `B` * values, regardless of whether the `B` values appear in a [Ior.Right] or a [Ior.Both].