diff options
Diffstat (limited to 'fr-fr')
-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 |