summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGabriel Hurley <gabehr@gmail.com>2010-11-20 10:49:42 +0000
committerGabriel Hurley <gabehr@gmail.com>2010-11-20 10:49:42 +0000
commita56e47400f099af6b0d0d6ef588e7f286ab60ed5 (patch)
tree6cdb6e67aa66a15bb3783198a043e0669002909e /docs
parent7ff5580d95f6bb40f12a0b90f51570e23b014a2d (diff)
Fixed #14727 -- Corrected three minor issues in the docs. Thanks to OldTroll for the report and the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14644 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/optimization.txt2
-rw-r--r--docs/topics/http/file-uploads.txt3
-rw-r--r--docs/topics/http/urls.txt2
3 files changed, 3 insertions, 4 deletions
diff --git a/docs/topics/db/optimization.txt b/docs/topics/db/optimization.txt
index 13221d239b..7449d63c27 100644
--- a/docs/topics/db/optimization.txt
+++ b/docs/topics/db/optimization.txt
@@ -4,7 +4,7 @@ Database access optimization
Django's database layer provides various ways to help developers get the most
out of their databases. This document gathers together links to the relevant
-documentation, and adds various tips, organized under an number of headings that
+documentation, and adds various tips, organized under a number of headings that
outline the steps to take when attempting to optimize your database usage.
Profile first
diff --git a/docs/topics/http/file-uploads.txt b/docs/topics/http/file-uploads.txt
index c505cac7ee..a06a1ca2ef 100644
--- a/docs/topics/http/file-uploads.txt
+++ b/docs/topics/http/file-uploads.txt
@@ -363,8 +363,7 @@ attributes:
``'image/jpeg'``.
``content_length`` is the length of the image given by the browser.
- Sometimes this won't be provided and will be ``None``., ``None``
- otherwise.
+ Sometimes this won't be provided and will be ``None``.
``charset`` is the character set (i.e. ``utf8``) given by the browser.
Like ``content_length``, this sometimes won't be provided.
diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt
index 00ee483457..ac85d0531b 100644
--- a/docs/topics/http/urls.txt
+++ b/docs/topics/http/urls.txt
@@ -809,7 +809,7 @@ This ``current_app`` argument is used as a hint to resolve application
namespaces into URLs on specific application instances, according to the
:ref:`namespaced URL resolution strategy <topics-http-reversing-url-namespaces>`.
-.. admonition:: Make sure your views are all correct
+.. admonition:: Make sure your views are all correct.
As part of working out which URL names map to which patterns, the
``reverse()`` function has to import all of your URLconf files and examine