Skip to content

Commit

Permalink
Update index.md
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAngryByrd authored Nov 16, 2023
1 parent 2ac6f63 commit 27e4e6f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docsSrc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ AsyncEx is similar to Async except in the following ways:

```fsharp
open IcedTasks
let fakeDisposable = { new IAsyncDisposable with member __.DisposeAsync() = ValueTask.CompletedTask }
let fakeDisposable () = { new IAsyncDisposable with member __.DisposeAsync() = ValueTask.CompletedTask }
let myAsyncEx = asyncEx {
use! _ = fakeDisposable
use _ = fakeDisposable ()
return 42
}
````
Expand Down

0 comments on commit 27e4e6f

Please sign in to comment.