From 85a7790e9e8499601c260e2f0f56dd4c6635a37c Mon Sep 17 00:00:00 2001 From: valery1707 Date: Thu, 22 Sep 2022 19:00:45 +0300 Subject: [PATCH] Fix typo --- .../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].