Skip to content

Commit

Permalink
bad kind label for bind2
Browse files Browse the repository at this point in the history
  • Loading branch information
wcharczuk committed Feb 11, 2024
1 parent 7780189 commit 6927dd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bind2.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func Bind2Context[A, B, C any](scope Scope, a Incr[A], b Incr[B], fn func(contex
bind := BindContext[Tuple2[A, B], C](scope, m, func(ctx context.Context, bs Scope, tv Tuple2[A, B]) (Incr[C], error) {
return fn(ctx, scope, tv.A, tv.B)
})
bind.Node().SetKind("bind3")
bind.Node().SetKind("bind2")
return bind
}

Expand Down

0 comments on commit 6927dd6

Please sign in to comment.