Skip to content

Commit

Permalink
auto merge of rust-lang#18833 : slashgrin/rust/patch-1, r=brson
Browse files Browse the repository at this point in the history
Should refer to handling panicking tasks like any other computation
that may _fail_, not any other computation that may _panic_.
  • Loading branch information
bors committed Nov 12, 2014
2 parents e82f60e + 2df9a08 commit 4d5e7f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -5274,7 +5274,7 @@ let result = task::try(proc() {

This task will randomly panic or succeed. `task::try` returns a `Result`
type, so we can handle the response like any other computation that may
panic.
fail.

# Macros

Expand Down

0 comments on commit 4d5e7f3

Please sign in to comment.