summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcassian-goode <cgoode.dev@gmail.com>2025-03-25 09:24:49 -0400
committerGitHub <noreply@github.com>2025-03-25 09:24:49 -0400
commit3cc7e0377c71080708281c2d8661d20f00a54df6 (patch)
tree70437c9a435b1f5e868b98f593a64f3df5c59a68
parent7c0d269279aaed64d6b8240ed5c1e9f6a981181e (diff)
Fix typo - errors5.rs
Minor typo correction in exercise instructions
-rw-r--r--exercises/13_error_handling/errors5.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/13_error_handling/errors5.rs b/exercises/13_error_handling/errors5.rs
index 5721835..125779b 100644
--- a/exercises/13_error_handling/errors5.rs
+++ b/exercises/13_error_handling/errors5.rs
@@ -6,7 +6,7 @@
//
// 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 type which implements a particular
-// 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
// `Trait` is the trait the compiler looks for on any value used in that
// context. For this exercise, that context is the potential errors which
// can be returned in a `Result`.