Commit 177270ea authored by mlissner's avatar mlissner Committed by Tim Graham
Browse files

[1.5.x] Correct very minor typo

Just changed as to has.

Backport of d8f2d940 from master
parent 61b68584
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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