Skip to content

Commit 020eb23

Browse files
committed
Remove xml docs from deprecated functions
1 parent b2f3c8c commit 020eb23

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/FSharpPlus/Operators.fs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,6 @@ module Operators =
185185
let inline lift2 (f: 'T->'U->'V) (x: '``Applicative<'T>``) (y: '``Applicative<'U>``) : '``Applicative<'V>`` = Lift2.Invoke f x y
186186

187187
[<System.Obsolete("Use lift2 instead.")>]
188-
/// <category index="2">Applicative</category>
189188
let inline liftA2 (f: 'T->'U->'V) (x: '``Applicative<'T>``) (y: '``Applicative<'U>``) : '``Applicative<'V>`` = lift2 f x y
190189

191190
/// <summary>
@@ -207,11 +206,9 @@ module Operators =
207206
let inline (<* ) (x: '``Applicative<'U>``) (y: '``Applicative<'T>``) : '``Applicative<'U>`` = ((fun (k: 'U) (_: 'T) -> k ) <!> x : '``Applicative<'T->'U>``) <*> y
208207

209208
[<System.Obsolete("Use flip (<*>) instead.")>]
210-
/// <category index="2">Applicative</category>
211209
let inline (<**>) (x: '``Applicative<'T>``) : '``Applicative<'T -> 'U>``->'``Applicative<'U>`` = flip (<*>) x
212210

213211
[<System.Obsolete("Use opt instead.")>]
214-
/// <category index="2">Applicative</category>
215212
let inline optional v = Some <!> v </Append.Invoke/> result None
216213

217214
/// <summary>

0 commit comments

Comments
 (0)