summaryrefslogtreecommitdiffhomepage
path: root/fr-fr/ruby-fr.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'fr-fr/ruby-fr.html.markdown')
-rw-r--r--fr-fr/ruby-fr.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/fr-fr/ruby-fr.html.markdown b/fr-fr/ruby-fr.html.markdown
index 3060bd75..1564d2b6 100644
--- a/fr-fr/ruby-fr.html.markdown
+++ b/fr-fr/ruby-fr.html.markdown
@@ -268,7 +268,7 @@ end
# implicitement la valeur de la dernière instruction évaluée
double(2) #=> 4
-# Les paranthèses sont facultative
+# Les parenthèses sont facultatives
# lorsqu'il n'y a pas d'ambiguïté sur le résultat
double 3 #=> 6
@@ -336,8 +336,8 @@ class Humain
puts "#{msg}"
end
- def species
- @@species
+ def espece
+ @@espece
end
end