Skip to content

Commit 6d94390

Browse files
committed
Fixed a typo in the ORM chapter
1 parent 7b97d73 commit 6d94390

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

django_orm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Cool! Let's get an instance of the user now:
7272

7373
user = User.objects.get(username='ola')
7474

75-
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.
75+
As you can see, we now `get` a `User` with a `username` that equals to 'ola'. Neat! Of course, you have to adjust it to your username.
7676

7777
Now we can finally create our first post:
7878

0 commit comments

Comments
 (0)