diff --git a/translations/fr/try_ruby_280.md b/translations/fr/try_ruby_280.md
index b04e33ec..863d7076 100644
--- a/translations/fr/try_ruby_280.md
+++ b/translations/fr/try_ruby_280.md
@@ -19,8 +19,8 @@ Desormais, nous allons compter tes critiques. Reste avec moi. Écris :
puts notations
-La trait droite dans le code est le caractère pipe (|), probablement situé juste au-dessus de la touche 'T' OU 'Y' d'un clavier Windows Français.
+Le trait droit dans le code correspond au caractère "pipe" (|), probablement situé juste au-dessus de la touche 'T' OU 'Y' d'un clavier Windows Français, ou "Option+Maj+L" sur MacOS.
Le _+= 1_ signifie : augmenter la valeur de 1.
-Ne t'inquiète pas si tu ne comprends pas tout ce qui se passe ici. Tout sera expliqué plus tard.
\ No newline at end of file
+Ne t'inquiète pas si tu ne comprends pas tout ce qui se passe ici. Tout sera expliqué plus tard.
diff --git a/translations/fr/try_ruby_390.md b/translations/fr/try_ruby_390.md
index 74779d54..2af9db0c 100644
--- a/translations/fr/try_ruby_390.md
+++ b/translations/fr/try_ruby_390.md
@@ -7,52 +7,6 @@ error:
load: prev
---
-Okay we now have a list of plays from the internet. The list was in the json format.
-Fortunately for us Ruby kindly provides a method to convert json data to a Ruby hash.
-The _get\_shakey_ method already did that for us.
-
-But since the structure of the json data is retained in the hash, it is still a bit difficult to read.
-Let us write a method to display the plays nicely.
-
-If you inspect the list of plays carefully you will see that it has a kind of nested
-structure. (This is actually quite common in data you get from the internet.)
-Looks like this:
-
-
- - "William Shakespeare"
-
- - "1"
-
- - "title": "The Two Gentlemen of Verona"
- - "finished": 1591
-
-
- - "2"
-
- - "title": "The Taming of the Shrew"
- - "finished": 1591
-
-
- - ...
-
-
-
-
-To list the plays we first have to access the top "William Shakespeare" hash element by its name.
-Next we have to __iterate__ through each element below it.
-
-Ruby has a method for iterating. It is called __each__. We have seen it before when
-creating our book rating system.
-
-Everything that method __each__ returns is passed to a block:
-
- s = get_shakey
-
- s["William Shakespeare"].each { |key, val|
- puts val["title"]
- }
-
-
Bien, maintenant nous avons une liste de pièces de théâtre provenant d'Internet. La liste est au format json.
Heureusement pour nous, Ruby fournit gentiment une méthode pour convertir les données json en un hash Ruby.
La méthode _get\_shakey_ l'a déjà fait pour nous.
@@ -96,4 +50,4 @@ Tout ce que la méthode __each__ retourne est passé à un bloc :
s["William Shakespeare"].each { |key, val|
puts val["title"]
- }
\ No newline at end of file
+ }
diff --git a/translations/fr/try_ruby_460.md b/translations/fr/try_ruby_460.md
index 10d5dfbc..291e3bda 100644
--- a/translations/fr/try_ruby_460.md
+++ b/translations/fr/try_ruby_460.md
@@ -16,7 +16,7 @@ Tu viens juste d'avoir une idée brillante pour une nouvelle application.
Ce sera __LA__ prochaine plateforme de messagerie instantanée.
Tu veux une application où les gens peuvent s'envoyer des messages courts.
Tu appelles ces messages BlurbsTM. Un BlurbTM a une longueur maximale de seulement 40 caractères.
-Ajoutons également definir son humeur (__mood__).
+Ajoutons également la possibilité de définir son humeur (__mood__).
### Par où commencer
Eh bien, tu pourrais stocker tes entrées BlurbsTM dans un fichier json, n'est-ce pas ?
@@ -30,4 +30,4 @@ Tu es déjà familier avec de nombreuses classes : Hash, Array, String.
Créons une nouvelle classe (ne renvoie aucune sortie) :
class Blurb
- end
\ No newline at end of file
+ end