From 12a9107a7da1a1d7dde6cc0e347990ad82785254 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Fri, 29 Apr 2011 15:11:24 +0000 Subject: [PATCH] Fixed minor doc typo. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16125 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/http/urls.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt index ae1ca3f254..a5fb0c9db1 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -835,7 +835,7 @@ reverse_lazy() A lazily evaluated version of `reverse()`_. It is useful for when you need to use a URL reversal before your project's -URLConf is loaded. Some common cases where this method is necessary are:: +URLConf is loaded. Some common cases where this method is necessary are: * providing a reversed URL as the ``url`` attribute of a generic class-based view.