From 5b41488f3a0c2e839911ffcce592e0ecfe460a70 Mon Sep 17 00:00:00 2001 From: Bastien Dejean Date: Mon, 21 Sep 2015 12:37:58 +0200 Subject: [PATCH] TRPL: Fix typo --- src/doc/trpl/error-handling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/error-handling.md b/src/doc/trpl/error-handling.md index 555d97ec3c3..bf7b9222fa7 100644 --- a/src/doc/trpl/error-handling.md +++ b/src/doc/trpl/error-handling.md @@ -1223,7 +1223,7 @@ let err2: Box = From::from(parse_err); There is a really important pattern to recognize here. Both `err1` and `err2` have the *same type*. This is because they are existentially quantified types, -or trait objects. In particularly, their underlying type is *erased* from the +or trait objects. In particular, their underlying type is *erased* from the compiler's knowledge, so it truly sees `err1` and `err2` as exactly the same. Additionally, we constructed `err1` and `err2` using precisely the same function call: `From::from`. This is because `From::from` is overloaded on both