Skip to content

Commit

Permalink
Removed applicative and remove functor doc and added monoid doc
Browse files Browse the repository at this point in the history
  • Loading branch information
rodriguestiago0 committed Nov 27, 2022
1 parent f20398d commit 5084858
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion docsrc/content/abstraction-applicative.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ From F#
- ``Choice<'T,'U>``
- ``KeyValuePair<'Key,'T>``
- ``'Monoid * 'T``
- ``'ValueTuple<Monoid, 'T>``
- ``Task<'T>``
- ``'R->'T``
- ``Expr<'T>``
Expand Down
1 change: 0 additions & 1 deletion docsrc/content/abstraction-functor.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ From F#
- ``KeyValuePair<'Key,'T>``
- ``Map<'Key,'T>``
- ``'Monoid * 'T``
- ``'ValueTuple<Monoid, 'T>``
- ``Task<'T>``
- ``'R->'T``
- ``Expr<'T>``
Expand Down
1 change: 1 addition & 0 deletions docsrc/content/abstraction-monoid.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ From .Net/F#
- ``Map<'T,'Monoid>``
- ``TimeSpan``
- ``Tuple<'Monoid1* ... *'MonoidN>``
- ``ValueTuple<'Monoid1* ... *'Monoid8>``
- ``'Monoid1* ... *'MonoidN``
- ``Task<'T>``
- ``'T->'Monoid``
Expand Down
2 changes: 1 addition & 1 deletion src/FSharpPlus/Extensions/ValueTuple.fs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace FSharpPlus

/// Additional operations on Tuple (,)
/// Additional operations on ValueTuple (,)
[<RequireQualifiedAccess>]
module ValueTuple2 =
let mapItem1 f (x, y) = (f x, y)
Expand Down

0 comments on commit 5084858

Please sign in to comment.