From 8fc63087f6ad888b68dff17ee0c527774332d932 Mon Sep 17 00:00:00 2001 From: Bouke Haarsma Date: Mon, 14 Oct 2013 13:59:56 +0200 Subject: [PATCH] Fixed #21264 -- Incorrect RST usage in docs --- docs/topics/class-based-views/index.txt | 7 ++++--- docs/topics/http/shortcuts.txt | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/topics/class-based-views/index.txt b/docs/topics/class-based-views/index.txt index b2fa93e05f..84e4597842 100644 --- a/docs/topics/class-based-views/index.txt +++ b/docs/topics/class-based-views/index.txt @@ -69,9 +69,10 @@ and override the template name:: template_name = "about.html" Then we just need to add this new view into our URLconf. -`~django.views.generic.base.TemplateView` is a class, not a function, so we -point the URL to the :meth:`~django.views.generic.base.View.as_view` class -method instead, which provides a function-like entry to class-based views:: +:class:`~django.views.generic.base.TemplateView` is a class, not a function, +so we point the URL to the :meth:`~django.views.generic.base.View.as_view` +class method instead, which provides a function-like entry to class-based +views:: # urls.py from django.conf.urls import patterns diff --git a/docs/topics/http/shortcuts.txt b/docs/topics/http/shortcuts.txt index 27e8817884..6a99a4b406 100644 --- a/docs/topics/http/shortcuts.txt +++ b/docs/topics/http/shortcuts.txt @@ -191,7 +191,7 @@ If you want to override the :setting:`TEMPLATE_DIRS` setting, use the The arguments could be: - * A model: the model's `:meth:`~django.db.models.Model.get_absolute_url()` + * A model: the model's :meth:`~django.db.models.Model.get_absolute_url()` function will be called. * A view name, possibly with arguments: :func:`urlresolvers.reverse