summaryrefslogtreecommitdiffhomepage
path: root/fr-fr/scala.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'fr-fr/scala.html.markdown')
-rw-r--r--fr-fr/scala.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/fr-fr/scala.html.markdown b/fr-fr/scala.html.markdown
index c6d06361..c6a61745 100644
--- a/fr-fr/scala.html.markdown
+++ b/fr-fr/scala.html.markdown
@@ -276,7 +276,7 @@ i // Montre la valeur de i. Notez que while est une boucle au sens classique.
i = 0
// La boucle do while
do {
- println("x is still less then 10");
+ println("x is still less than 10");
i += 1
} while (i < 10)