Skip to content

Commit 777d136

Browse files
committed
Fixed typos
1 parent df42419 commit 777d136

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

django_orm/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The effect should be like this:
1919
(InteractiveConsole)
2020
>>>
2121

22-
You're know in Django's interactive console. It's just like Python prompt but with some additional Django magic :) You can use all Python commands here too, of course.
22+
You're now in Django's interactive console. It's just like Python prompt but with some additional Django magic :) You can use all Python commands here too, of course.
2323

2424
### All objects
2525

@@ -64,7 +64,7 @@ Cool! Let's get an instance of the user now:
6464

6565
As you can see, we know `get` a `User` with a `username` that equals to 'ola'. Neat! Of course, you have to adjust it to your username.
6666

67-
Now we can finally create our first po that:
67+
Now we can finally create our first post:
6868

6969
>>> Post.objects.create(author = user, title = 'Sample title', text = 'Test')
7070

0 commit comments

Comments
 (0)