Skip to content

Commit

Permalink
Revert "Removed applicative and remove functor doc and added monoid doc"
Browse files Browse the repository at this point in the history
This reverts commit 5084858.
  • Loading branch information
gusty committed Nov 28, 2022
1 parent 5084858 commit ffcf317
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions docsrc/content/abstraction-applicative.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ From F#
- ``Choice<'T,'U>``
- ``KeyValuePair<'Key,'T>``
- ``'Monoid * 'T``
- ``'ValueTuple<Monoid, 'T>``
- ``Task<'T>``
- ``'R->'T``
- ``Expr<'T>``
Expand Down
1 change: 1 addition & 0 deletions docsrc/content/abstraction-functor.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ From F#
- ``KeyValuePair<'Key,'T>``
- ``Map<'Key,'T>``
- ``'Monoid * 'T``
- ``'ValueTuple<Monoid, 'T>``
- ``Task<'T>``
- ``'R->'T``
- ``Expr<'T>``
Expand Down
1 change: 0 additions & 1 deletion docsrc/content/abstraction-monoid.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ 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 ValueTuple (,)
/// Additional operations on Tuple (,)
[<RequireQualifiedAccess>]
module ValueTuple2 =
let mapItem1 f (x, y) = (f x, y)
Expand Down

0 comments on commit ffcf317

Please sign in to comment.