summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNami-Doc <vendethiel@hotmail.fr>2014-04-15 16:23:14 +0200
committerNami-Doc <vendethiel@hotmail.fr>2014-04-15 16:23:14 +0200
commitb2a47cf123398b0053b031c7a9f1e34650585c1d (patch)
tree377343a5e022bff0d3307d3bd2f44d5b56ef5123
parent1afd1ac857b3da096a599bb1609634053a5e2e7e (diff)
parentbe55775d5a7b278048b08474e42aa9703bf3905b (diff)
Merge pull request #592 from arnaud-f/master
Escaped a quote
-rw-r--r--fr-fr/python-fr.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/fr-fr/python-fr.html.markdown b/fr-fr/python-fr.html.markdown
index 9dbdafe1..58a036ba 100644
--- a/fr-fr/python-fr.html.markdown
+++ b/fr-fr/python-fr.html.markdown
@@ -75,7 +75,7 @@ not False #=> True
# Les chaînes de caractères sont créées avec " ou '
"C'est une chaîne."
-'C'est aussi une chaîne.'
+'C\'est aussi une chaîne.'
# On peut aussi les "additioner" !
"Hello " + "world!" #=> "Hello world!"