@@ -423,7 +423,7 @@ public static ValueTask<long> ReadAllAsync<T>(this ChannelReader<T> reader,
423423 /// <param name="deferredExecution">If true, calls await Task.Yield() before reading.</param>
424424 /// <returns>The count of items read after the reader has completed.
425425 /// The count should be ignored if the number of iterations could exceed the max value of long.</returns>
426- [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convience ." ) ]
426+ [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convenience ." ) ]
427427 public static ValueTask < long > ReadAllAsync < T > ( this ChannelReader < T > reader ,
428428 CancellationToken cancellationToken ,
429429 Func < T , long , ValueTask > receiver ,
@@ -480,7 +480,7 @@ public static ValueTask<long> ReadAllAsync<TWrite, TRead>(this Channel<TWrite, T
480480 /// <param name="deferredExecution">If true, calls await Task.Yield() before reading.</param>
481481 /// <returns>The count of items read after the reader has completed.
482482 /// The count should be ignored if the number of iterations could exceed the max value of long.</returns>
483- [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convience ." ) ]
483+ [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convenience ." ) ]
484484 public static ValueTask < long > ReadAllAsync < TWrite , TRead > ( this Channel < TWrite , TRead > channel ,
485485 CancellationToken cancellationToken ,
486486 Func < TRead , long , ValueTask > receiver ,
@@ -532,7 +532,7 @@ public static ValueTask<long> TaskReadAllAsync<TWrite, TRead>(this Channel<TWrit
532532 /// <param name="deferredExecution">If true, calls await Task.Yield() before reading.</param>
533533 /// <returns>The count of items read after the reader has completed.
534534 /// The count should be ignored if the number of iterations could exceed the max value of long.</returns>
535- [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convience ." ) ]
535+ [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convenience ." ) ]
536536 public static ValueTask < long > TaskReadAllAsync < TWrite , TRead > ( this Channel < TWrite , TRead > channel ,
537537 CancellationToken cancellationToken ,
538538 Func < TRead , long , Task > receiver ,
@@ -581,7 +581,7 @@ public static ValueTask<long> ReadAllAsync<T>(this ChannelReader<T> reader,
581581 /// <param name="deferredExecution">If true, calls await Task.Yield() before reading.</param>
582582 /// <returns>The count of items read after the reader has completed.
583583 /// The count should be ignored if the number of iterations could exceed the max value of long.</returns>
584- [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convience ." ) ]
584+ [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convenience ." ) ]
585585 public static ValueTask < long > ReadAllAsync < T > ( this ChannelReader < T > reader ,
586586 CancellationToken cancellationToken ,
587587 Func < T , ValueTask > receiver ,
@@ -630,7 +630,7 @@ public static ValueTask<long> TaskReadAllAsync<T>(this ChannelReader<T> reader,
630630 /// <param name="deferredExecution">If true, calls await Task.Yield() before reading.</param>
631631 /// <returns>The count of items read after the reader has completed.
632632 /// The count should be ignored if the number of iterations could exceed the max value of long.</returns>
633- [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convience ." ) ]
633+ [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convenience ." ) ]
634634 public static ValueTask < long > TaskReadAllAsync < T > ( this ChannelReader < T > reader ,
635635 CancellationToken cancellationToken ,
636636 Func < T , Task > receiver ,
@@ -682,7 +682,7 @@ public static ValueTask<long> TaskReadAllAsync<TWrite, TRead>(this Channel<TWrit
682682 /// <param name="deferredExecution">If true, calls await Task.Yield() before reading.</param>
683683 /// <returns>The count of items read after the reader has completed.
684684 /// The count should be ignored if the number of iterations could exceed the max value of long.</returns>
685- [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convience ." ) ]
685+ [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convenience ." ) ]
686686 public static ValueTask < long > TaskReadAllAsync < TWrite , TRead > ( this Channel < TWrite , TRead > channel ,
687687 CancellationToken cancellationToken ,
688688 Func < TRead , Task > receiver ,
@@ -740,7 +740,7 @@ public static ValueTask<long> ReadAllAsync<TWrite, TRead>(this Channel<TWrite, T
740740 /// <param name="deferredExecution">If true, calls await Task.Yield() before reading.</param>
741741 /// <returns>The count of items read after the reader has completed.
742742 /// The count should be ignored if the number of iterations could exceed the max value of long.</returns>
743- [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convience ." ) ]
743+ [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convenience ." ) ]
744744 public static ValueTask < long > ReadAllAsync < TWrite , TRead > ( this Channel < TWrite , TRead > channel ,
745745 CancellationToken cancellationToken ,
746746 Func < TRead , ValueTask > receiver ,
@@ -753,7 +753,7 @@ public static ValueTask<long> ReadAllAsync<TWrite, TRead>(this Channel<TWrite, T
753753 /// <typeparam name="T">The item type.</typeparam>
754754 /// <param name="reader">The channel reader to read from.</param>
755755 /// <param name="receiver">The receiver function.</param>
756- /// <param name="deferredExecution">If true, calls await Task.Yield() before writreadinging .</param>
756+ /// <param name="deferredExecution">If true, calls await Task.Yield() before reading .</param>
757757 /// <param name="cancellationToken">An optional cancellation token.</param>
758758 /// <returns>The count of items read after the reader has completed.
759759 /// The count should be ignored if the number of iterations could exceed the max value of long.</returns>
@@ -783,7 +783,7 @@ public static ValueTask<long> ReadAll<T>(this ChannelReader<T> reader,
783783 /// <param name="reader">The channel reader to read from.</param>
784784 /// <param name="receiver">The receiver function.</param>
785785 /// <param name="cancellationToken">The cancellation token.</param>
786- /// <param name="deferredExecution">If true, calls await Task.Yield() before writreadinging .</param>
786+ /// <param name="deferredExecution">If true, calls await Task.Yield() before reading .</param>
787787 /// <returns>The count of items read after the reader has completed.
788788 /// The count should be ignored if the number of iterations could exceed the max value of long.</returns>
789789 public static ValueTask < long > ReadAll < T > ( this ChannelReader < T > reader ,
@@ -799,10 +799,10 @@ public static ValueTask<long> ReadAll<T>(this ChannelReader<T> reader,
799799 /// <param name="reader">The channel reader to read from.</param>
800800 /// <param name="cancellationToken">The cancellation token.</param>
801801 /// <param name="receiver">The receiver function.</param>
802- /// <param name="deferredExecution">If true, calls await Task.Yield() before writreadinging .</param>
802+ /// <param name="deferredExecution">If true, calls await Task.Yield() before reading .</param>
803803 /// <returns>The count of items read after the reader has completed.
804804 /// The count should be ignored if the number of iterations could exceed the max value of long.</returns>
805- [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convience ." ) ]
805+ [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convenience ." ) ]
806806 public static ValueTask < long > ReadAll < T > ( this ChannelReader < T > reader ,
807807 CancellationToken cancellationToken ,
808808 Action < T , long > receiver ,
@@ -860,7 +860,7 @@ public static ValueTask<long> ReadAll<TWrite, TRead>(this Channel<TWrite, TRead>
860860 /// <param name="deferredExecution">If true, calls await Task.Yield() before reading.</param>
861861 /// <returns>The count of items read after the reader has completed.
862862 /// The count should be ignored if the number of iterations could exceed the max value of long.</returns>
863- [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convience ." ) ]
863+ [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convenience ." ) ]
864864 public static ValueTask < long > ReadAll < TWrite , TRead > ( this Channel < TWrite , TRead > channel ,
865865 CancellationToken cancellationToken ,
866866 Action < TRead , long > receiver ,
@@ -921,7 +921,7 @@ public static ValueTask<long> ReadAll<T>(this ChannelReader<T> reader,
921921 /// <param name="deferredExecution">If true, calls await Task.Yield() before reading.</param>
922922 /// <returns>The count of items read after the reader has completed.
923923 /// The count should be ignored if the number of iterations could exceed the max value of long.</returns>
924- [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convience ." ) ]
924+ [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convenience ." ) ]
925925 public static ValueTask < long > ReadAll < T > ( this ChannelReader < T > reader ,
926926 CancellationToken cancellationToken ,
927927 Action < T > receiver ,
@@ -978,7 +978,7 @@ public static ValueTask<long> ReadAll<TWrite, TRead>(this Channel<TWrite, TRead>
978978 /// <param name="deferredExecution">If true, calls await Task.Yield() before reading.</param>
979979 /// <returns>The count of items read after the reader has completed.
980980 /// The count should be ignored if the number of iterations could exceed the max value of long.</returns>
981- [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convience ." ) ]
981+ [ SuppressMessage ( "Design" , "CA1068:CancellationToken parameters must come last" , Justification = "Provided for aesthetic convenience ." ) ]
982982 public static ValueTask < long > ReadAll < TWrite , TRead > ( this Channel < TWrite , TRead > channel ,
983983 CancellationToken cancellationToken ,
984984 Action < TRead > receiver ,
@@ -1020,7 +1020,7 @@ public static ValueTask<long> ReadAllAsLines(this ChannelReader<string> reader,
10201020 /// </summary>
10211021 /// <typeparam name="T">The item type.</typeparam>
10221022 /// <param name="channel">The channel to read from.</param>
1023- /// <param name="receiver">The TextWriter to recieve the lines.</param>
1023+ /// <param name="receiver">The TextWriter to receive the lines.</param>
10241024 /// <param name="deferredExecution">If true, calls await Task.Yield() before reading.</param>
10251025 /// <param name="cancellationToken">An optional cancellation token.</param>
10261026 /// <returns>The count of items read after the reader has completed.
@@ -1041,7 +1041,7 @@ public static ValueTask<long> ReadAllAsLines<T>(this Channel<T, string> channel,
10411041 /// </summary>
10421042 /// <typeparam name="T">The item type.</typeparam>
10431043 /// <param name="channel">The channel to read from.</param>
1044- /// <param name="receiver">The TextWriter to recieve the lines.</param>
1044+ /// <param name="receiver">The TextWriter to receive the lines.</param>
10451045 /// <param name="cancellationToken">An optional cancellation token.</param>
10461046 /// <param name="deferredExecution">If true, calls await Task.Yield() before reading.</param>
10471047 /// <returns>The count of items read after the reader has completed.
0 commit comments