diff --git a/src/FSharpPlus/Data/ValueOption.fs b/src/FSharpPlus/Data/ValueOption.fs index fb7b42719..54af11c0d 100644 --- a/src/FSharpPlus/Data/ValueOption.fs +++ b/src/FSharpPlus/Data/ValueOption.fs @@ -53,7 +53,7 @@ type ValueOptionT<'``monad>``> with static member inline (>>=) (x: ValueOptionT<'``Monad``>, f: 'T -> ValueOptionT<'``Monad``>) = ValueOptionT.bind f x /// - /// Composes left-to-right two option functions (Kleisli composition). + /// Composes left-to-right two ValueOption functions (Kleisli composition). /// /// Monad static member inline (>=>) (f: 'T -> ValueOptionT<'``Monad``>, g: 'U -> ValueOptionT<'``Monad``>) : 'T -> ValueOptionT<'``Monad``> = fun x -> ValueOptionT.bind g (f x) diff --git a/src/FSharpPlus/Extensions/Result.fs b/src/FSharpPlus/Extensions/Result.fs index 85075d5a3..00efe40d4 100644 --- a/src/FSharpPlus/Extensions/Result.fs +++ b/src/FSharpPlus/Extensions/Result.fs @@ -21,7 +21,7 @@ module Result = let apply f (x: Result<'T,'Error>) : Result<'U,'Error> = match f, x with Ok a, Ok b -> Ok (a b) | Error e, _ | _, Error e -> Error e /// If value is Ok, returns both of them tupled. Otherwise it returns the Error value twice in a tuple. - /// The value. + /// The value. /// The resulting tuple. let unzip (source: Result<'T * 'U, 'Error>) : Result<'T, 'Error> * Result<'U, 'Error> = match source with Ok (x, y) -> Ok x, Ok y | Error e -> Error e, Error e