File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ let arr2 = (+) <!> [|1;2;3|] <.> [|10;20;30|]
127
127
128
128
// Validations
129
129
130
- let validated = zapp2 {
130
+ let validated = app2 {
131
131
let! x = async { return Ok 1 }
132
132
and! y = async { return Ok 2 }
133
133
and! z = async { return Error [ " Error" ] }
Original file line number Diff line number Diff line change @@ -236,19 +236,19 @@ module GenericBuilders =
236
236
/// Creates a strict monadic computation expression with side-effects (see http://fsprojects.github.io/FSharpPlus/computation-expressions.html for more information)
237
237
let monad '<'``monad<'t>``> = new MonadFxStrictBuilder< '`` monad<'t> `` > ()
238
238
239
- /// Creates an applicative computation expression.
239
+ /// Creates a (sequential) applicative computation expression.
240
240
let applicative < '``Applicative < 'T > ``> = ApplicativeBuilder< '`` Applicative<'T> `` > ()
241
241
242
- /// Creates an applicative computation expression which compose effects of two Applicatives.
242
+ /// Creates a (sequential) applicative computation expression which compose effects of two Applicatives.
243
243
let applicative2 < '``Applicative1 < Applicative2 < 'T >> ``> = ApplicativeBuilder2< '`` Applicative1<Applicative2<'T>> `` > ()
244
244
245
- /// Creates an applicative computation expression which compose effects of three Applicatives.
245
+ /// Creates a (sequential) applicative computation expression which compose effects of three Applicatives.
246
246
let applicative3 < '``Applicative1 < Applicative2 < Applicative3 < 'T >>> ``> = ApplicativeBuilder3< '`` Applicative1<Applicative2<Applicative3<'T>>> `` > ()
247
247
248
248
/// Creates a (non sequential) applicative computation expression.
249
- let zapp < '``Applicative < 'T > ``> = ZipApplicativeBuilder< '`` Applicative <'T>`` > ()
249
+ let app < '``ZipApplicative < 'T > ``> = ZipApplicativeBuilder< '`` ZipApplicative <'T>`` > ()
250
250
251
251
/// Creates a (non sequential) applicative computation expression which compose effects of two Applicatives.
252
- let zapp2 < '``Applicative1 < Applicative2 < 'T >> ``> = ZipApplicativeBuilder2< '`` Applicative1<Applicative2 <'T>>`` > ()
252
+ let app2 < '``ZipApplicative1 < ZipApplicative2 < 'T >> ``> = ZipApplicativeBuilder2< '`` ZipApplicative1<ZipApplicative2 <'T>>`` > ()
253
253
254
254
#endif
You can’t perform that action at this time.
0 commit comments