diff options
| author | Mo Bitar <76752051+mo8it@users.noreply.github.com> | 2025-04-03 17:52:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-03 17:52:57 +0200 |
| commit | 78194b4441cd1142ebd6a68ee4bee368bc966c55 (patch) | |
| tree | 361b8fe3372dd298e46468320a2a894497ec23ac /exercises/13_error_handling | |
| parent | 44699e9b1b667e18fa1ca4529035ccd616e3aae9 (diff) | |
| parent | 3cc7e0377c71080708281c2d8661d20f00a54df6 (diff) | |
Merge pull request #2224 from cassian-goode/patch-1
Fix typo - errors5.rs
Diffstat (limited to 'exercises/13_error_handling')
| -rw-r--r-- | exercises/13_error_handling/errors5.rs | 2 |
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`. |
