summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authormlissner <mlissner@michaeljaylissner.com>2013-09-21 13:34:45 -0700
committerTim Graham <timograham@gmail.com>2013-09-21 18:18:42 -0400
commit14f76b15c4b2ab34e7afcf092e5146d401aad240 (patch)
tree3fd8854ded5c75e32c77cc609b4b7df42aec709e /docs/ref/models
parentbb8a08794941ebc4fa5b575bf5dadad92d637dbe (diff)
[1.6.x] Correct very minor typo
Just changed as to has. Backport of d8f2d940cc from master
Diffstat (limited to 'docs/ref/models')
-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 4fdea9b939..908291d9bf 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -1461,7 +1461,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