From 970aff0dadeeed4362881f8088e81f4d703000a7 Mon Sep 17 00:00:00 2001 From: Rob Wu Date: Tue, 27 Sep 2016 16:42:40 +0200 Subject: 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". --- fr-fr/rust-fr.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fr-fr/rust-fr.html.markdown') 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 -- cgit v1.2.3