diff --git a/src/FSharp.Control.AsyncSeq/AsyncSeq.fsi b/src/FSharp.Control.AsyncSeq/AsyncSeq.fsi index 15c1bf5..fa057f8 100644 --- a/src/FSharp.Control.AsyncSeq/AsyncSeq.fsi +++ b/src/FSharp.Control.AsyncSeq/AsyncSeq.fsi @@ -549,7 +549,7 @@ module AsyncSeq = /// completion of sub-sequences depends on completion of other sub-sequences. val groupBy<'T, 'Key when 'Key : equality> : projection:('T -> 'Key) -> source:AsyncSeq<'T> -> AsyncSeq<'Key * AsyncSeq<'T>> - #if (NETSTANDARD2_1 || NETCOREAPP3_0) + #if (NETSTANDARD || NET) /// Creates an asynchronous computation that asynchronously yields results from the provided .NET IAsyncEnumerable. val ofAsyncEnum<'T> : source: Collections.Generic.IAsyncEnumerable<'T> -> AsyncSeq<'T>