Skip to content

Commit 127fb29

Browse files
committed
Merge pull request DjangoGirls#581 from patrick91/patch-1
Fix quotes on italian translation
2 parents d153380 + f65c9ec commit 127fb29

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

it/python_introduction/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ Se devi mettere un apostrofo nella tua stringa, hai due modi per farlo.
6464

6565
Utilizzando le virgolette doppie:
6666

67-
>>> "Runnin' down the hill"
68-
"Runnin' down the hill"
67+
>>> "Correre verso l'albero"
68+
"Correre verso l'albero"
6969

7070

7171
o facendo l'escape dell'apostrofo (cioè trattandolo come un carattere qualunque) con una barra rovesciata ( \ ):
7272

73-
>>> "Correre"\"giù dalla collina"
74-
"Correre giù dalla collina"
73+
>>> 'Correre verso l\'albero'
74+
"Correre verso l'albero"
7575

7676

7777
Bello, eh? Per vedere il tuo nome in maiuscolo, digita:

0 commit comments

Comments
 (0)