From 2df9a085bd904dae7786a6c5d30e4a4057a16f22 Mon Sep 17 00:00:00 2001 From: Jeff Parsons Date: Mon, 10 Nov 2014 21:20:11 +1100 Subject: [PATCH] Rogue 'panic' -> 'fail' in guide. Should refer to handling panicking tasks like any other computation that may _fail_, not any other computation that may _panic_. --- src/doc/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index 87816134378b6..473c30ab1c44e 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -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