From e6d6ee28fe30b4daeb4b3e86e73600d2828a3d11 Mon Sep 17 00:00:00 2001 From: Adam MacBeth Date: Sun, 19 Feb 2023 00:27:41 -0800 Subject: [PATCH] Update move-semantics.md (#438) --- src/ownership/move-semantics.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ownership/move-semantics.md b/src/ownership/move-semantics.md index a93cdc78..5bdb8c7c 100644 --- a/src/ownership/move-semantics.md +++ b/src/ownership/move-semantics.md @@ -21,6 +21,6 @@ fn main() { * Mention that this is the opposite of the defaults in C++, which copies by value unless you use `std::move` (and the move constructor is defined!). -* In Rust, you clones are explicit (by using `clone`). +* In Rust, clones are explicit (by using `clone`). - \ No newline at end of file +