diff options
| author | mo8it <mo8it@proton.me> | 2024-06-27 11:18:41 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-06-27 11:18:41 +0200 |
| commit | e6228e92b4df766bddb8524ed42d66690348f100 (patch) | |
| tree | 4a477345e35dfb0c31e2d5a0bb62527bed080a84 /exercises | |
| parent | 3e9c4c8bb83ee97ed49ef2004afba20ef8d387c1 (diff) | |
| parent | 22b650c09218cc5873c0652e431a105363db53b3 (diff) | |
Merge remote-tracking branch 'refs/remotes/origin/main'
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/11_hashmaps/hashmaps1.rs | 2 | ||||
| -rw-r--r-- | exercises/23_conversions/from_into.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/exercises/11_hashmaps/hashmaps1.rs b/exercises/11_hashmaps/hashmaps1.rs index 80829ea..02f4725 100644 --- a/exercises/11_hashmaps/hashmaps1.rs +++ b/exercises/11_hashmaps/hashmaps1.rs @@ -3,7 +3,7 @@ // A basket of fruits in the form of a hash map needs to be defined. The key // represents the name of the fruit and the value represents how many of that // particular fruit is in the basket. You have to put at least three different -// types of fruits (e.g apple, banana, mango) in the basket and the total count +// types of fruits (e.g. apple, banana, mango) in the basket and the total count // of all the fruits should be at least five. // // Make me compile and pass the tests! diff --git a/exercises/23_conversions/from_into.rs b/exercises/23_conversions/from_into.rs index 11787c3..10836a6 100644 --- a/exercises/23_conversions/from_into.rs +++ b/exercises/23_conversions/from_into.rs @@ -39,7 +39,7 @@ impl Default for Person { // 5. Extract the other element from the split operation and parse it into a // `usize` as the age. // If while parsing the age, something goes wrong, then return the default of -// Person Otherwise, then return an instantiated Person object with the results +// Person. Otherwise, then return an instantiated Person object with the results // I AM NOT DONE |
