summaryrefslogtreecommitdiffhomepage
path: root/it-it
diff options
context:
space:
mode:
authorRob Wu <rob@robwu.nl>2016-09-27 16:42:40 +0200
committerven <vendethiel@hotmail.fr>2016-09-27 16:42:40 +0200
commit970aff0dadeeed4362881f8088e81f4d703000a7 (patch)
tree3cea9a483d88b5e0fbfb1c8b8c2fb8b83f7da886 /it-it
parent8fa91ffcb2b026ae02ae15d5f444fdf7af7b6e25 (diff)
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".
Diffstat (limited to 'it-it')
-rw-r--r--it-it/rust-it.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/it-it/rust-it.html.markdown b/it-it/rust-it.html.markdown
index 8ef09712..6b379f93 100644
--- a/it-it/rust-it.html.markdown
+++ b/it-it/rust-it.html.markdown
@@ -288,7 +288,7 @@ fn main() {
var = 3;
let ref_var: &i32 = &var;
- println!("{}", var); // Diversamente da `box`, `var` può ancora essere usato
+ println!("{}", var); // Diversamente da `mio`, `var` può ancora essere usato
println!("{}", *ref_var);
// var = 5; // questo non compilerebbe, perché `var` è stato preso in prestito
// *ref_var = 6; // neanche questo, perché `ref_var` è un riferimento immutabile