﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
30347	A typo in Aggregation document.	PM	Daniel Musketa	"In the online document,  **Using Django** -> **Models and databases** -> **Aggregation** page,
section **Filtering on annotations**,  [https://docs.djangoproject.com/en/2.2/topics/db/aggregation/#filtering-on-annotations]

The original text is
{{{
>>> highly_rated = Count('books', filter=Q(books__rating__gte=7))
>>> Author.objects.annotate(num_books=Count('books'), highly_rated_books=highly_rated)
}}}

Here, should 'books' be 'book' in these two lines?

"	Cleanup/optimization	closed	Documentation	2.2	Normal	fixed		ming.p.peng@…	Ready for checkin	0	0	0	0	1	0
