Skip to content

Commit 63f9869

Browse files
Improved style
Co-authored-by: Ruben Bartelink <ruben@bartelink.com>
1 parent 928815f commit 63f9869

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ There are more differences:
182182
| **Support `for`** | `IAsyncEnumerable<'T>`, `AsyncSeq`, any sequence | `AsyncSeq`, any sequence |
183183
| **Behavior with `yield`** | Zero allocations; no `Task` or even `ValueTask` created | Allocates an F# `Async` wrapped in a singleton `AsyncSeq` |
184184
| **Conversion to other** | `TaskSeq.toAsyncSeq` | `AsyncSeq.toAsyncEnum` |
185-
| **Conversion from other** | Implicit (yield!) or `TaskSeq.ofAsyncSeq` | `AsyncSeq.ofAsyncEnum` |
185+
| **Conversion from other** | Implicit (`yield!`) or `TaskSeq.ofAsyncSeq` | `AsyncSeq.ofAsyncEnum` |
186186
| **Recursion in `yield!`** | No (requires F# support, upcoming) | Yes |
187187
| **Based on F# concept of** | `task` | `async` |
188188
| **`MoveNextAsync`** | `ValueTask<bool>` | `Async<'T option>` |

0 commit comments

Comments
 (0)