From 85a90a3c200a757709a2b14c096d618e082831d1 Mon Sep 17 00:00:00 2001 From: xd1le Date: Sun, 6 Dec 2015 20:32:49 +1100 Subject: [PATCH] doc(book/error-handling): fix typo --- src/doc/book/error-handling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/book/error-handling.md b/src/doc/book/error-handling.md index af6846e65de..57389bdc493 100644 --- a/src/doc/book/error-handling.md +++ b/src/doc/book/error-handling.md @@ -2122,7 +2122,7 @@ heuristics! `unwrap`. Be warned: if it winds up in someone else's hands, don't be surprised if they are agitated by poor error messages! * If you're writing a quick 'n' dirty program and feel ashamed about panicking - anyway, then using either a `String` or a `Box` for your + anyway, then use either a `String` or a `Box` for your error type (the `Box` type is because of the [available `From` impls](../std/convert/trait.From.html)). * Otherwise, in a program, define your own error types with appropriate