Skip to content

Commit 66a94d9

Browse files
committed
Fix some visible whitespace issues
1 parent e8585f2 commit 66a94d9

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Django Girls Tutorial
1+
# Django Girls Tutorial
22
[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/DjangoGirls/tutorial?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
33

44
> This work is licensed under the Creative Commons Attribution-ShareAlike 4.0

en/django_orm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ As you can see, we now `get` a `User` with a `username` that equals to 'ola'. Ne
6666

6767
Now we can finally create our first post:
6868

69-
>>> Post.objects.create(author = me, title = 'Sample title', text = 'Test')
69+
>>> Post.objects.create(author=me, title='Sample title', text='Test')
7070

7171
Hurray! Wanna check if it worked?
7272

en/python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ So far we've been writing all our python code in the intepreter, which limits us
406406

407407
To exit from the Python interpreter that we've been using, simply type the ```exit()``` function:
408408

409-
>>>exit()
409+
>>> exit()
410410
$
411411

412412
This will put you back into the command prompt.

es/python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ Hasta ahora hemos estado escribiendo nuestro código de python en el intérprete
438438

439439
Para salir del interprete de Python que hemos estado usando, simplemente escribe la función de ~~~ exit() ~~~:
440440

441-
>>>exit()
441+
>>> exit()
442442
$
443443

444444

fr/python_introduction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ Pour l'instant, on a écrit tout notre code python directement dans l'interprét
438438

439439
Pour quitter l'interpréteur Python que nous sommes en train d'utiliser, il suffit de taper la fonction ~ ~ ~ exit() ~ ~ ~ :
440440

441-
>>>exit()
441+
>>> exit()
442442
$
443443

444444

@@ -730,4 +730,4 @@ Allez donc vous chercher un cupcake avant de passer au chapitre suivant :)
730730

731731
![Cupcake][3]
732732

733-
[3]: images/cupcake.png
733+
[3]: images/cupcake.png

uk/python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@
438438

439439
Щоб вийти з Python інтерпретатора, яким ми користувалися до цього, просто наберіть функцію ~~~ exit()~~~:
440440

441-
>>>exit()
441+
>>> exit()
442442
$
443443

444444

0 commit comments

Comments
 (0)