summaryrefslogtreecommitdiff
path: root/docs/topics/http
diff options
context:
space:
mode:
authorKaren Tracey <kmtracey@gmail.com>2008-11-02 20:43:20 +0000
committerKaren Tracey <kmtracey@gmail.com>2008-11-02 20:43:20 +0000
commitc4835830235574886f9bd2b54ace5406bea2d931 (patch)
treedc8867b45654891527010007b80c8287a2516d3f /docs/topics/http
parent8a5f2ee912cb29191f35618a05ee90a3df636ae3 (diff)
Fixed #9497 - Doc typos. Many thanks ramiro.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9330 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics/http')
-rw-r--r--docs/topics/http/file-uploads.txt4
-rw-r--r--docs/topics/http/urls.txt2
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/http/file-uploads.txt b/docs/topics/http/file-uploads.txt
index 9a32157527..18abeaa087 100644
--- a/docs/topics/http/file-uploads.txt
+++ b/docs/topics/http/file-uploads.txt
@@ -153,8 +153,8 @@ Three settings control Django's file upload behavior:
``0`` is very important: it indicates an octal number, which is the
way that modes must be specified. If you try to use ``644``, you'll
get totally incorrect behavior.
-
- **Always prefix the mode with a ``0``.**
+
+ **Always prefix the mode with a 0.**
:setting:`FILE_UPLOAD_HANDLERS`
The actual handlers for uploaded files. Changing this setting allows
diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt
index dcbe18ab04..f3030fee3d 100644
--- a/docs/topics/http/urls.txt
+++ b/docs/topics/http/urls.txt
@@ -50,7 +50,7 @@ algorithm the system follows to determine which Python code to execute:
4. Once one of the regexes matches, Django imports and calls the given
view, which is a simple Python function. The view gets passed an
- :class:`~django.http.HttpRequest`` as its first argument and any values
+ :class:`~django.http.HttpRequest` as its first argument and any values
captured in the regex as remaining arguments.
Example