Update solution files to match exercise files

This commit is contained in:
Jatin Sanghvi
2025-12-19 19:32:24 +05:30
parent b5d440fdc3
commit 1ebb4d25a6
6 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -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`.