From 9552f2a1fee55280b3bdda18624058aa14c1a369 Mon Sep 17 00:00:00 2001 From: Ay355 <77558710+Ay-355@users.noreply.github.com> Date: Mon, 1 Nov 2021 14:27:42 -0700 Subject: [rust/all] Remove .iter() on array example (#4230) As of Rust 1.53.0, arrays implement the IntoIterator trait, making .iter() on an array unnecessary --- 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 b3675f5b..a61f78be 100644 --- a/fr-fr/rust-fr.html.markdown +++ b/fr-fr/rust-fr.html.markdown @@ -221,7 +221,7 @@ fn main() {     // `for` boucles / itération     let array = [1, 2, 3]; -    for i in array.iter() { +    for i in array {         println!("{}", i);     } -- cgit v1.2.3 From 9694d4d9608b87d0936c7c5f0d1b56b9e49e5ccb Mon Sep 17 00:00:00 2001 From: mphschmitt Date: Wed, 6 Jul 2022 23:56:27 +0200 Subject: [rust/fr] Update language name: rust -> Rust (#4308) The name was different in english and in french, which prevented the french translation from being displayed. --- 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 a61f78be..c81dd1d6 100644 --- a/fr-fr/rust-fr.html.markdown +++ b/fr-fr/rust-fr.html.markdown @@ -1,5 +1,5 @@ --- -language: rust +language: Rust contributors: - ["P1start", "http://p1start.github.io/"] translators: -- cgit v1.2.3 From c373aa6bb8bd11c4a3cd827c4d3bbedcf7d03b51 Mon Sep 17 00:00:00 2001 From: Mathias Schmitt Date: Fri, 8 Jul 2022 20:35:12 +0200 Subject: [rust/fr-fr] Fix typo. --- 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 c81dd1d6..6fc0d07d 100644 --- a/fr-fr/rust-fr.html.markdown +++ b/fr-fr/rust-fr.html.markdown @@ -309,7 +309,7 @@ fn main() { Il y a beaucoup plus à Rust -- ce est juste l'essentiel de Rust afin que vous puissiez comprendre les choses les plus importantes. Pour en savoir plus sur Rust, lire [La Programmation Rust -Langue](http://doc.rust-lang.org/book/index.html) et etudier la +Langue](http://doc.rust-lang.org/book/index.html) et étudier la [/r/rust](http://reddit.com/r/rust) subreddit. Les gens sur le canal de #rust sur irc.mozilla.org sont aussi toujours prêts à aider les nouveaux arrivants. -- cgit v1.2.3