diff options
author | Rob Wu <rob@robwu.nl> | 2016-09-27 16:42:40 +0200 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2016-09-27 16:42:40 +0200 |
commit | 970aff0dadeeed4362881f8088e81f4d703000a7 (patch) | |
tree | 3cea9a483d88b5e0fbfb1c8b8c2fb8b83f7da886 /fr-fr/rust-fr.html.markdown | |
parent | 8fa91ffcb2b026ae02ae15d5f444fdf7af7b6e25 (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 'fr-fr/rust-fr.html.markdown')
-rw-r--r-- | fr-fr/rust-fr.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fr-fr/rust-fr.html.markdown b/fr-fr/rust-fr.html.markdown index 0fa16075..5a1f8268 100644 --- a/fr-fr/rust-fr.html.markdown +++ b/fr-fr/rust-fr.html.markdown @@ -285,7 +285,7 @@ fn main() { var = 3; let ref_var: &i32 = &var; - println!("{}", var); // Contrairement `box`, `var` peut encore être utilisé + println!("{}", var); // Contrairement `mien`, `var` peut encore être utilisé println!("{}", *ref_var); // Var = 5; // Cela ne compile pas parce que `var` est emprunté. // *ref_var = 6; // Ce ne serait pas non plus, parce que `ref_var` est une |