소스 검색

Fixed a typo in docs/ref/contrib/postgres/search.txt.

Mathieu Richardoz 8 년 전
부모
커밋
f1af076fba
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/ref/contrib/postgres/search.txt

+ 1 - 1
docs/ref/contrib/postgres/search.txt

@@ -128,7 +128,7 @@ a different language parsers and dictionaries as defined by the database::
 
 The value of ``config`` could also be stored in another column::
 
-    >>> from djanog.db.models import F
+    >>> from django.db.models import F
     >>> Entry.objects.annotate(
     ...     search=SearchVector('body_text', config=F('blog__language')),
     ... ).filter(search=SearchQuery('œuf', config=F('blog__language')))