From f329d9e1a643da97362caf83a237576f5b735f58 Mon Sep 17 00:00:00 2001 From: Asif Saif Uddin Date: Tue, 22 Nov 2022 12:26:28 +0600 Subject: [PATCH] Update docs/tutorial/6-viewsets-and-routers.md --- docs/tutorial/6-viewsets-and-routers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/6-viewsets-and-routers.md b/docs/tutorial/6-viewsets-and-routers.md index fbf4abe4a..9156f41b5 100644 --- a/docs/tutorial/6-viewsets-and-routers.md +++ b/docs/tutorial/6-viewsets-and-routers.md @@ -6,7 +6,7 @@ REST framework includes an abstraction for dealing with `ViewSets`, that allows A `ViewSet` class is only bound to a set of method handlers at the last moment, when it is instantiated into a set of views, typically by using a `Router` class which handles the complexities of defining the URL conf for you. -## Refactoring to use view sets +## Refactoring to use ViewSets Let's take our current set of views, and refactor them into view sets.