From dd459760387ad59da1b19f84c65c67ba076ec6ef Mon Sep 17 00:00:00 2001 From: Anna Date: Sun, 26 Oct 2014 10:39:21 +0000 Subject: [PATCH] minor spelling correction beggining to beginning --- django_orm/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_orm/README.md b/django_orm/README.md index c63f6706ed1..1ea10a2ae9c 100644 --- a/django_orm/README.md +++ b/django_orm/README.md @@ -124,7 +124,7 @@ QuerySets also allow you to order the list of objects. Let's try to order them b >>> Post.objects.order_by('created_date') [, , , ] -We can also reverse the ordering by adding `-` at the beggining: +We can also reverse the ordering by adding `-` at the beginning: >>> Post.objects.order_by('-created_date') [, , , ]