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.
2 parents 6217b00 + 5b41488 commit c06f464Copy full SHA for c06f464
src/doc/trpl/error-handling.md
@@ -1223,7 +1223,7 @@ let err2: Box<Error> = From::from(parse_err);
1223
1224
There is a really important pattern to recognize here. Both `err1` and `err2`
1225
have the *same type*. This is because they are existentially quantified types,
1226
-or trait objects. In particularly, their underlying type is *erased* from the
+or trait objects. In particular, their underlying type is *erased* from the
1227
compiler's knowledge, so it truly sees `err1` and `err2` as exactly the same.
1228
Additionally, we constructed `err1` and `err2` using precisely the same
1229
function call: `From::from`. This is because `From::from` is overloaded on both
0 commit comments