Commit 43d0345f authored by Taylor Edmiston's avatar Taylor Edmiston Committed by Tim Graham
Browse files

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

parent 2960e3a3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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