Skip to content

Commit 0c0267d

Browse files
committed
capitalized Python
1 parent 5d0a720 commit 0c0267d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/django_orm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ This is simple: we import model `Post` from `blog.models`. Let's try displaying
4242
>>> Post.objects.all()
4343
[<Post: my post title>, <Post: another post title>]
4444

45-
It's a list of the posts we created earlier! We created these posts using the Django admin interface. However, now we want to create new posts using python, so how do we do that?
45+
It's a list of the posts we created earlier! We created these posts using the Django admin interface. However, now we want to create new posts using Python, so how do we do that?
4646

4747

4848
### Create object

0 commit comments

Comments
 (0)