aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/generic-views.md
diff options
context:
space:
mode:
authorTom Christie2013-05-09 13:14:20 +0100
committerTom Christie2013-05-09 13:14:20 +0100
commitf2466418dd325ed1353d4e0056411c16e96c2073 (patch)
tree9276a66ae36d5bd46a294b73cab06a1c42ec02df /docs/api-guide/generic-views.md
parent3737e17d7c29fbc958d6e56c29a641dd6ec26af8 (diff)
downloaddjango-rest-framework-f2466418dd325ed1353d4e0056411c16e96c2073.tar.bz2
Tweak doc text slightly
Diffstat (limited to 'docs/api-guide/generic-views.md')
-rwxr-xr-xdocs/api-guide/generic-views.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/generic-views.md b/docs/api-guide/generic-views.md
index 80df2f40..3651dc40 100755
--- a/docs/api-guide/generic-views.md
+++ b/docs/api-guide/generic-views.md
@@ -290,7 +290,7 @@ Extends: [GenericAPIView], [RetrieveModelMixin], [UpdateModelMixin], [DestroyMod
# Customizing the generic views
-Often you'll want to use the existing generic views, but use some slightly customized behavior. If you find yourself reusing some bit of customized behavior in multiple places, you might want to refactor the behavior into a mixin class that you can then just apply to any view or viewset as needed.
+Often you'll want to use the existing generic views, but use some slightly customized behavior. If you find yourself reusing some bit of customized behavior in multiple places, you might want to refactor the behavior into a common class that you can then just apply to any view or viewset as needed.
## Creating custom mixins