Skip to content

Commit cf86e73

Browse files
authored
Merge pull request #1381 from shgew/fix/errors5-comment
fix: unify undisclosed type notation in errors5.rs
2 parents a3670d2 + 238a496 commit cf86e73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/error_handling/errors5.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
// This exercise uses some concepts that we won't get to until later in the course, like `Box` and the
66
// `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
7+
// For now, think of the `Box<dyn ???>` type as an "I want anything that does ???" type, which, given
88
// Rust's usual standards for runtime safety, should strike you as somewhat lenient!
99

1010
// 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

Comments
 (0)