File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -90,10 +90,10 @@ module NonEmptySeq =
9090 let create x xs = seq { yield x; yield ! xs } |> unsafeOfSeq
9191
9292 /// Creates a NonEmptySeq range, containing at least the first element of the range
93- let (|..) starting ending = ( if starting < ending then { starting .. ending } else Seq.singleton starting) |> unsafeOfSeq
93+ let (|..) starting ending = ( if starting < ending then seq { starting .. ending } else Seq.singleton starting) |> unsafeOfSeq
9494
9595 /// Creates a NonEmptySeq range, containing at least the last element of the range
96- let (..|) starting ending = ( if starting < ending then { starting .. ending } else Seq.singleton ending) |> unsafeOfSeq
96+ let (..|) starting ending = ( if starting < ending then seq { starting .. ending } else Seq.singleton ending) |> unsafeOfSeq
9797
9898
9999 /// <summary>Returns a new sequence that contains all pairings of elements from the first and second sequences.</summary>
You can’t perform that action at this time.
0 commit comments