]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/book/listings/ch04-understanding-ownership/listing-04-03/src/main.rs
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / src / doc / book / listings / ch04-understanding-ownership / listing-04-03 / src / main.rs
index 23906b4306f1141e49bed201b0b11f7aa7036905..b001cc5f4a4f61610e5642238fba63cdbefaffda 100644 (file)
@@ -7,7 +7,7 @@ fn main() {
     let x = 5;                      // x comes into scope
 
     makes_copy(x);                  // x would move into the function,
-                                    // but i32 is Copy, so its okay to still
+                                    // but i32 is Copy, so it's okay to still
                                     // use x afterward
 
 } // Here, x goes out of scope, then s. But because s's value was moved, nothing