We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d705125 commit 1defba8Copy full SHA for 1defba8
1 file changed
README.md
@@ -100,4 +100,4 @@ Depending on the level of asynchrony in your application, you may want to avoid
100
101
`ResultsAsync<T>()` is fully asynchronous from end-to-end but returns an `IEnumerable<T>` that although has fully buffered the all the data into memory, has deferred the transformation until enumerated. This way, the asynchronous data pipeline is fully complete before synchronously transforming the data.
102
103
-Both methods ultimately are using a Queue<object[]> or ConcurrentQueue<object[]> (Dataflow) to buffer the data, but `ResultsAsync<T>()` buffers the entire data set before dequeuing and transforming the results.
+Both methods ultimately are using a `Queue<object[]>` or `ConcurrentQueue<object[]>` (Dataflow) to buffer the data, but `ResultsAsync<T>()` buffers the entire data set before dequeuing and transforming the results.
0 commit comments