summaryrefslogtreecommitdiff
path: root/exercises/07_structs/structs3.rs
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-06-26 02:26:04 +0200
committermo8it <mo8it@proton.me>2024-06-26 02:26:04 +0200
commit1694682aa4ee848033169449a3f64d2e163f5638 (patch)
treefe4a4c7b2c86690bb31681b0c9f0c88035a398a1 /exercises/07_structs/structs3.rs
parent29bcb282dacead96df6e6cdbec9ac1ba8008d90f (diff)
Fix typos
Diffstat (limited to 'exercises/07_structs/structs3.rs')
-rw-r--r--exercises/07_structs/structs3.rs3
1 files changed, 2 insertions, 1 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.