Skip to content

Commit 2500644

Browse files
committed
Fix join for tuple
1 parent f646f98 commit 2500644

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FSharpPlus/Control/Monad.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ type Join =
9393
static member Join (x: list<list<_>> , [<Optional>]_output: list<'T> , [<Optional>]_mthd: Join ) = List.concat x : list<'T>
9494
static member Join (x: _ [][] , [<Optional>]_output: 'T [] , [<Optional>]_mthd: Join ) = Array.concat x : 'T []
9595
static member Join (g , [<Optional>]_output: 'R->'T , [<Optional>]_mthd: Join ) = (fun r -> (g r) r) : 'R->'T
96-
static member inline Join (m1, (m2, x) , [<Optional>]_output: 'Monoid * 'T , [<Optional>]_mthd: Join ) = Plus.Invoke m1 m2, x : 'Monoid*'T
96+
static member inline Join ((m1, (m2, x)) , [<Optional>]_output: 'Monoid * 'T , [<Optional>]_mthd: Join ) = Plus.Invoke m1 m2, x : 'Monoid*'T
9797
static member inline Join (struct (m1, struct (m2, x)), [<Optional>]_output: struct ('Monoid * 'T), [<Optional>]_mthd: Join) = Plus.Invoke m1 m2, x : struct ('Monoid * 'T)
9898
static member Join (x , [<Optional>]_output: Async<'T> , [<Optional>]_mthd: Join ) = async.Bind (x, id) : Async<'T>
9999
static member Join (x , [<Optional>]_output: Result<'T,'E> , [<Optional>]_mthd: Join ) = Result.flatten x : Result<'T,'E>

0 commit comments

Comments
 (0)