Skip to content

Commit 3962979

Browse files
committed
Fix generic signatures in docs
1 parent 1aa0154 commit 3962979

4 files changed

+11
-11
lines changed

docsrc/content/abstraction-category.fsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Minimal complete definition
2222
2323
*)
2424
(**
25-
static member get_Id() : 'Category<'T,'T>
26-
static member (<<<) (f:Category<'U,'V>, g:'Category<'T,'U>) : 'Category<'T,'V>
25+
static member get_Id() : 'Category<'T, 'T>
26+
static member (<<<) (f: 'Category<'U, 'V>, g: 'Category<'T, 'U>) : 'Category<'T, 'V>
2727
*)
2828
(**
2929
@@ -35,7 +35,7 @@ Other operations
3535
* ``(>>>)``
3636
*)
3737
(**
38-
static member (>>>) (g:'Category<'T,'U>, f:Category<'U,'V>) : 'Category<'T,'V>
38+
static member (>>>) (g: 'Category<'T, 'U>, f: 'Category<'U, 'V>) : 'Category<'T, 'V>
3939
*)
4040
(**
4141

docsrc/content/abstraction-comonad.fsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ Minimal complete definition
2323
2424
*)
2525
(**
26-
static member Extract (s:'Comonad<'T>) : 'T
27-
static member (=>>) (s:'Comonad<'T>, f:'Comonad<'T> -> 'U) : Comonad<'U>
26+
static member Extract (s: 'Comonad<'T>) : 'T
27+
static member (=>>) (s: 'Comonad<'T>, f: 'Comonad<'T> -> 'U) : 'Comonad<'U>
2828
*)
2929
(**
3030

docsrc/content/abstraction-monad.fsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Minimal complete definition
2222
*)
2323
(**
2424
static member Return (x: 'T) : 'Monad<'T>
25-
static member (>>=) (x: Monad<'T>, f: 'T->Monad<'U>) : Monad<'U>
25+
static member (>>=) (x: 'Monad<'T>, f: 'T -> 'Monad<'U>) : 'Monad<'U>
2626
*)
2727
(**
2828
@@ -34,7 +34,7 @@ Other operations
3434
* ``join``
3535
*)
3636
(**
37-
static member Join (x:'Monad<'Monad<'T>>) :'Monad<'T>
37+
static member Join (x: 'Monad<'Monad<'T>>) : 'Monad<'T>
3838
*)
3939
(**
4040
@@ -361,4 +361,4 @@ Recommended reading
361361
362362
It contains examples using F#+ and an explanation from scratch.
363363
364-
*)
364+
*)

docsrc/content/abstraction-profunctor.fsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Minimal complete definition
2020
* ``dimap f g x``
2121
*)
2222
(**
23-
static member Dimap (x:'Profunctor<'T,'V>, f:'U->'T, g:'V->'W) :'Profunctor<'U,'W>
23+
static member Dimap (x: 'Profunctor<'T, 'V>, f: 'U -> 'T, g: 'V -> 'W) : 'Profunctor<'U, 'W>
2424
*)
2525
(**
2626
@@ -31,14 +31,14 @@ Other operations
3131
* ``lmap f x``
3232
*)
3333
(**
34-
static member Contramap (x:Profunctor<'T,'V>, f:'U->'T) :'Profunctor<'U,'V>
34+
static member Contramap (x: 'Profunctor<'T, 'V>, f: 'U -> 'T) : 'Profunctor<'U, 'V>
3535
*)
3636
(**
3737
3838
* ``rmap g x``
3939
*)
4040
(**
41-
static member Map (x:Profunctor<'T,'V>, f:'V->'W) :'Profunctor<'T,'W>
41+
static member Map (x: 'Profunctor<'T,'V>, f: 'V -> 'W) : 'Profunctor<'T, 'W>
4242
*)
4343
(**
4444

0 commit comments

Comments
 (0)