Skip to content

Commit 3cc7e03

Browse files
Fix typo - errors5.rs
Minor typo correction in exercise instructions
1 parent 7c0d269 commit 3cc7e03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/13_error_handling/errors5.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
// In short, this particular use case for boxes is for when you want to own a
88
// 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
9+
// trait. To do so, the `Box` is declared as of type `Box<dyn Trait>` where
1010
// `Trait` is the trait the compiler looks for on any value used in that
1111
// context. For this exercise, that context is the potential errors which
1212
// can be returned in a `Result`.

0 commit comments

Comments
 (0)