diff --git a/rpl/_05_ownership/_03_move/src/main.rs b/rpl/_05_ownership/_03_move/src/main.rs index 229122f..e01f487 100644 --- a/rpl/_05_ownership/_03_move/src/main.rs +++ b/rpl/_05_ownership/_03_move/src/main.rs @@ -107,7 +107,7 @@ fn main() { // // 1. Simple values like an integer doesn't need to be cloned. // 2. They can be copied by Rust automatically. - // 3. It has a Copy treat. + // 3. It has a Copy trait. // SEE: https://doc.rust-lang.org/std/marker/trait.Copy.html // -} \ No newline at end of file +}