Browse Source

Fixed typo in docs/topics/class-based-views/generic-display.txt

Taylor Edmiston 8 years ago
parent
commit
43d0345fe1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/topics/class-based-views/generic-display.txt

+ 1 - 1
docs/topics/class-based-views/generic-display.txt

@@ -290,7 +290,7 @@ technique::
     class AcmeBookList(ListView):
 
         context_object_name = 'book_list'
-        queryset = Book.objects.filter(publisher__name='Acme Publishing')
+        queryset = Book.objects.filter(publisher__name='ACME Publishing')
         template_name = 'books/acme_list.html'
 
 Notice that along with a filtered ``queryset``, we're also using a custom