From 177270ea73bd1d68fcb55a06c49e2e294dead948 Mon Sep 17 00:00:00 2001 From: mlissner Date: Sat, 21 Sep 2013 13:34:45 -0700 Subject: [PATCH] [1.5.x] Correct very minor typo Just changed as to has. Backport of d8f2d940cc from master --- docs/ref/models/querysets.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index ac7ea2dc728..75bbca4fcf5 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -1400,7 +1400,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