summaryrefslogtreecommitdiff
path: root/docs/topics/class-based-views
diff options
context:
space:
mode:
authorHasan Ramezani <hasan.r67@gmail.com>2019-12-18 11:36:27 +0100
committerCarlton Gibson <carlton.gibson@noumenal.es>2019-12-18 11:36:27 +0100
commit70d95682b1be6a85abdeaea0205a897f7530f8bc (patch)
tree0a5489ba55bcb714a37b3f44a80742d838761733 /docs/topics/class-based-views
parent50a69efb2e73ab8b3ef26042d4579e8ade950c37 (diff)
Corrected some typos in documentation.
Diffstat (limited to 'docs/topics/class-based-views')
-rw-r--r--docs/topics/class-based-views/index.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/class-based-views/index.txt b/docs/topics/class-based-views/index.txt
index 364746a093..3ec00f7361 100644
--- a/docs/topics/class-based-views/index.txt
+++ b/docs/topics/class-based-views/index.txt
@@ -24,7 +24,7 @@ Basic examples
Django provides base view classes which will suit a wide range of applications.
All views inherit from the :class:`~django.views.generic.base.View` class, which
-handles linking the view in to the URLs, HTTP method dispatching and other
+handles linking the view into the URLs, HTTP method dispatching and other
common features. :class:`~django.views.generic.base.RedirectView` provides a
HTTP redirect, and :class:`~django.views.generic.base.TemplateView` extends the
base class to make it also render a template.