summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorliv <mokou@fastmail.com>2023-02-18 14:26:23 +0100
committerGitHub <noreply@github.com>2023-02-18 14:26:23 +0100
commitcf86e734f2880e7238b3bcb696fb067f43a324fa (patch)
tree383f8e477a497df2ebba506bbff035ffe8fbac56 /exercises
parenta3670d267bc662e0f6d58404b32f7f6c33926ffa (diff)
parent238a496af536b0390c7d7987aee6c63a9a25427d (diff)
Merge pull request #1381 from shgew/fix/errors5-comment
fix: unify undisclosed type notation in errors5.rs
Diffstat (limited to 'exercises')
-rw-r--r--exercises/error_handling/errors5.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/error_handling/errors5.rs b/exercises/error_handling/errors5.rs
index 6da06ef..eb5506c 100644
--- a/exercises/error_handling/errors5.rs
+++ b/exercises/error_handling/errors5.rs
@@ -4,7 +4,7 @@
// This exercise uses some concepts that we won't get to until later in the course, like `Box` and the
// `From` trait. It's not important to understand them in detail right now, but you can read ahead if you like.
-// 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
// Rust's usual standards for runtime safety, should strike you as somewhat lenient!
// 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