We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 52d14f3 + 1ba9652 commit 9351626Copy full SHA for 9351626
docs/tutorial-plain.rst
@@ -179,9 +179,9 @@ Create ``cookbook/ingredients/schema.py`` and type the following:
179
return Ingredient.objects.select_related('category').all()
180
181
182
-Note that the above ``Query`` class is marked as 'abstract'. This is
183
-because we will now create a project-level query which will combine all
184
-our app-level queries.
+Note that the above ``Query`` class is a mixin, inheriting from
+``object``. This is because we will now create a project-level query
+class which will combine all our app-level mixins.
185
186
Create the parent project-level ``cookbook/schema.py``:
187
0 commit comments