From 1ba9652f382ba99cd40a534167976ee64d0ad29b Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Wed, 1 Aug 2018 12:51:46 +0100 Subject: [PATCH] Reword 'abstract' -> 'mixin' in plain tutorial More technically correct --- docs/tutorial-plain.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tutorial-plain.rst b/docs/tutorial-plain.rst index 46f15142b..a87b011cb 100644 --- a/docs/tutorial-plain.rst +++ b/docs/tutorial-plain.rst @@ -179,9 +179,9 @@ Create ``cookbook/ingredients/schema.py`` and type the following: return Ingredient.objects.select_related('category').all() -Note that the above ``Query`` class is marked as 'abstract'. This is -because we will now create a project-level query which will combine all -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. Create the parent project-level ``cookbook/schema.py``: