Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolayPianikov committed Apr 15, 2024
1 parent 69ef3c4 commit 8bcb663
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Pure.DI.Core/Features/Default.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ private static void Setup()
.As(Lifetime.PerResolve)
.To(ctx => new global::System.Func<TT>(() =>
{
ctx.Inject<TT>(ctx.Tag, out var factory);
return factory;
ctx.Inject<TT>(ctx.Tag, out var value);
return value;
}))
.Bind<global::System.Collections.Generic.IComparer<TT>>()
.Bind<global::System.Collections.Generic.Comparer<TT>>()
Expand Down

0 comments on commit 8bcb663

Please sign in to comment.