Skip to content

Commit

Permalink
Fix Monad signature in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
gusty committed Oct 8, 2023
1 parent 1aa0154 commit ba9a085
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docsrc/content/abstraction-monad.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Minimal complete definition
*)
(**
static member Return (x: 'T) : 'Monad<'T>
static member (>>=) (x: Monad<'T>, f: 'T->Monad<'U>) : Monad<'U>
static member (>>=) (x: 'Monad<'T>, f: 'T -> 'Monad<'U>) : 'Monad<'U>
*)
(**
Expand All @@ -34,7 +34,7 @@ Other operations
* ``join``
*)
(**
static member Join (x:'Monad<'Monad<'T>>) :'Monad<'T>
static member Join (x: 'Monad<'Monad<'T>>) : 'Monad<'T>
*)
(**
Expand Down Expand Up @@ -361,4 +361,4 @@ Recommended reading
It contains examples using F#+ and an explanation from scratch.
*)
*)

0 comments on commit ba9a085

Please sign in to comment.