diff --git a/csharp8/ExploreCsharpEight/AsyncStreams.cs b/csharp8/ExploreCsharpEight/AsyncStreams.cs index 91e4abe..be85e13 100644 --- a/csharp8/ExploreCsharpEight/AsyncStreams.cs +++ b/csharp8/ExploreCsharpEight/AsyncStreams.cs @@ -13,7 +13,7 @@ internal async IAsyncEnumerable GenerateSequence() { // every 3 elements, wait 2 seconds: if (i % 3 == 0) - await Task.Delay(3000); + await Task.Delay(2000); yield return i; } }