We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c0d269 commit 3cc7e03Copy full SHA for 3cc7e03
exercises/13_error_handling/errors5.rs
@@ -6,7 +6,7 @@
6
//
7
// In short, this particular use case for boxes is for when you want to own a
8
// value and you care only that it is a type which implements a particular
9
-// trait. To do so, The `Box` is declared as of type `Box<dyn Trait>` where
+// trait. To do so, the `Box` is declared as of type `Box<dyn Trait>` where
10
// `Trait` is the trait the compiler looks for on any value used in that
11
// context. For this exercise, that context is the potential errors which
12
// can be returned in a `Result`.
0 commit comments