diff --git a/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Map.kt b/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Map.kt index 74b0ca8..4016858 100644 --- a/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Map.kt +++ b/kotlin-result/src/commonMain/kotlin/com/github/michaelbull/result/Map.kt @@ -42,7 +42,7 @@ public inline infix fun Result.mapError(transform: (E) -> F): Re } /** - * Maps this [Result][Result] to [U] by either applying the [transform] function to the * [value][Ok.value] if this [Result] is [Ok], or returning the [default] if this [Result] is an * [Err]. *