From 795f67f235660adce4360741efbcd9315d7d2896 Mon Sep 17 00:00:00 2001 From: Asif Saif Uddin Date: Tue, 22 Nov 2022 14:34:36 +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 2a973ab48..e8a85c0e1 100644 --- a/docs/tutorial/6-viewsets-and-routers.md +++ b/docs/tutorial/6-viewsets-and-routers.md @@ -62,7 +62,7 @@ The URLs for custom actions by default depend on the method name itself. If you ## Binding view sets to URLs explicitly The handler methods only get bound to the actions when we define the URLConf. -To see what's going on under the hood let's first explicitly create a set of views from our view sets. +To see what's going on under the hood let's first explicitly create a set of views from our ViewSets. In the `snippets/urls.py` file we bind our `ViewSet` classes into a set of concrete views.