Skip to content

Commit

Permalink
Merge pull request #135 from alex/patch-1
Browse files Browse the repository at this point in the history
Fixed a typo in the ORM chapter
  • Loading branch information
bmispelon committed Oct 12, 2014
2 parents 7b97d73 + 6d94390 commit 70c7b12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_orm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Cool! Let's get an instance of the user now:

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

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.
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.

Now we can finally create our first post:

Expand Down

0 comments on commit 70c7b12

Please sign in to comment.