Skip to content

Commit

Permalink
missing new Seq constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Louth committed Oct 17, 2021
1 parent c599975 commit ebc0439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LanguageExt.Core/Concurrency/AtomSeq.cs
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ public B Match<B>(
? Empty()
: xs.Tail.IsEmpty
? Head(xs.Head)
: Tail(xs.Head, xs.Tail);
: Tail(xs.Head, new Seq<A>(xs.Tail));
}

/// <summary>
Expand Down

0 comments on commit ebc0439

Please sign in to comment.