1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-29 09:30:20 +02:00

Fix comment in Rust docs: box -> mine (#2365)

The "box" is referring to the Box variable a few lines back, but that is
called "mine", not "box".
This commit is contained in:
Rob Wu
2016-09-27 16:42:40 +02:00
committed by ven
parent 8fa91ffcb2
commit 970aff0dad
5 changed files with 5 additions and 5 deletions

View File

@@ -286,7 +286,7 @@ fn main() {
var = 3;
let ref_var: &i32 = &var;
println!("{}", var); // Unlike `box`, `var` can still be used
println!("{}", var); // Unlike `mine`, `var` can still be used
println!("{}", *ref_var);
// var = 5; // this would not compile because `var` is borrowed
// *ref_var = 6; // this would not either, because `ref_var` is an immutable reference