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 a3670d2 + 238a496 commit cf86e73Copy full SHA for cf86e73
exercises/error_handling/errors5.rs
@@ -4,7 +4,7 @@
4
5
// This exercise uses some concepts that we won't get to until later in the course, like `Box` and the
6
// `From` trait. It's not important to understand them in detail right now, but you can read ahead if you like.
7
-// For now, think of the `Box<dyn ...>` type as an "I want anything that does ???" type, which, given
+// For now, think of the `Box<dyn ???>` type as an "I want anything that does ???" type, which, given
8
// Rust's usual standards for runtime safety, should strike you as somewhat lenient!
9
10
// In short, this particular use case for boxes is for when you want to own a value and you care only that it is a
0 commit comments