summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
Diffstat (limited to 'exercises')
-rw-r--r--exercises/07_structs/structs3.rs3
-rw-r--r--exercises/10_modules/modules2.rs2
2 files changed, 3 insertions, 2 deletions
diff --git a/exercises/07_structs/structs3.rs b/exercises/07_structs/structs3.rs
index 18a6cc9..93b57fe 100644
--- a/exercises/07_structs/structs3.rs
+++ b/exercises/07_structs/structs3.rs
@@ -25,7 +25,8 @@ impl Package {
// TODO: Add the correct return type to the function signature.
fn is_international(&self) {
- // TODO: Read the tests that use this method to find out when a package is concidered international.
+ // TODO: Read the tests that use this method to find out when a package
+ // is considered international.
}
// TODO: Add the correct return type to the function signature.
diff --git a/exercises/10_modules/modules2.rs b/exercises/10_modules/modules2.rs
index 24dce41..782a70e 100644
--- a/exercises/10_modules/modules2.rs
+++ b/exercises/10_modules/modules2.rs
@@ -2,7 +2,7 @@
// the `use` and `as` keywords.
mod delicious_snacks {
- // TODO: Add the follwing two `use` statements after fixing them.
+ // TODO: Add the following two `use` statements after fixing them.
// use self::fruits::PEAR as ???;
// use self::veggies::CUCUMBER as ???;