We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4a2e35 commit 34c3d50Copy full SHA for 34c3d50
docs/fsharp/language-reference/computation-expressions.md
@@ -309,7 +309,7 @@ module Eventually =
309
| Done value -> result (Ok value)
310
| NotYetDone work ->
311
NotYetDone (fun () ->
312
- let res = try Ok(work()) with | exn -> Exception exn
+ let res = try Ok(work()) with | exn -> Error exn
313
match res with
314
| Ok cont -> catch cont // note, a tailcall
315
| Error exn -> result (Error exn))
0 commit comments