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 5853179 commit a1982b3Copy full SHA for a1982b3
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