summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authormlissner <mlissner@michaeljaylissner.com>2013-09-21 13:34:45 -0700
committermlissner <mlissner@michaeljaylissner.com>2013-09-21 13:34:45 -0700
commitd8f2d940cce0085420b289fd81c3235c2128a3cc (patch)
tree5c22b22b3a9a6030a5e3c1c2027e522e3585c5cd /docs/ref
parent68b10fa1776f927180dd20f4818b5e6e07537615 (diff)
Correct very minor typo
Just changed as to has.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/querysets.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index bb9f303571..e2b6efc93a 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -1457,7 +1457,7 @@ call.
Finally, a word on using ``get_or_create()`` in Django views: please make sure
to use it only in ``POST`` requests unless you have a good reason not to
``GET`` requests shouldn't have any effect on data; use ``POST`` whenever a
-request to a page as a side effect on your data. For more, see `Safe methods`_
+request to a page has a side effect on your data. For more, see `Safe methods`_
in the HTTP spec.
.. _Safe methods: http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.1.1