소스 검색

Corrected typo in aggregation docs. Thanks to Ivan Sagalaev for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9746 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Russell Keith-Magee 16 년 전
부모
커밋
14d15093bc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/topics/db/aggregation.txt

+ 1 - 1
docs/topics/db/aggregation.txt

@@ -167,7 +167,7 @@ in a store, you could use the aggregate::
 
     >>> Store.objects.aggregate(min_price=Min('books__price'), max_price=Min('books__price'))
 
-Join chains can be as deep as you required. For example, to extract the
+Join chains can be as deep as you require. For example, to extract the
 age of the youngest author of any book available for sale, you could
 issue the query::