summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2010-01-10 18:42:30 +0000
committerAdrian Holovaty <adrian@holovaty.com>2010-01-10 18:42:30 +0000
commitcc25361b17fbc0d3622bb7562f90f1ac856aa363 (patch)
treeb53f4d31fb062f3c7fa8f93ddf6bb93aab33e766 /docs/ref
parent7789e9c006901cdc33fcdfc98d932eb06e912b93 (diff)
Fixed #12271 -- Fixed typo in URLField docs. Thanks, adam@andyet.net
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12184 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/fields.txt9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index e49aca431f..6a98afb005 100644
--- a/docs/ref/models/fields.txt
+++ b/docs/ref/models/fields.txt
@@ -771,10 +771,11 @@ A :class:`CharField` for a URL. Has one extra optional argument:
.. attribute:: URLField.verify_exists
If ``True`` (the default), the URL given will be checked for existence
- (i.e., the URL actually loads and doesn't give a 404 response). It should
- be noted that when using the single-threaded development server, validating
- a url being serverd by the same server will hang.
- This should not be a problem for multithreaded servers.
+ (i.e., the URL actually loads and doesn't give a 404 response).
+
+ Note that when you're using the single-threaded development server,
+ validating a URL being served by the same server will hang. This should not
+ be a problem for multithreaded servers.
The admin represents this as an ``<input type="text">`` (a single-line input).