summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSławomir Ehlert <slafs.e@gmail.com>2015-05-06 15:51:01 +0200
committerTim Graham <timograham@gmail.com>2015-05-06 09:59:28 -0400
commitedeb25708411f04126d46fe918522c847b24f63d (patch)
treea8c172174d726d42db5fef1c2563af49ccd4d022
parentd42cbde0c602dad97bb452280baa4a4c7a056bf4 (diff)
[1.7.x] Fixed typos in docs/ref/contrib/gis/geoquerysets.txt
Backport of 64ed8cdc9f2f7333b2a9fd6b318f520278c39293 from master
-rw-r--r--docs/ref/contrib/gis/geoquerysets.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/contrib/gis/geoquerysets.txt b/docs/ref/contrib/gis/geoquerysets.txt
index dd2dfe8efc..6d4b79340d 100644
--- a/docs/ref/contrib/gis/geoquerysets.txt
+++ b/docs/ref/contrib/gis/geoquerysets.txt
@@ -286,7 +286,7 @@ Example::
# A tuple lookup parameter is used to specify the geometry and
# the intersection pattern (the pattern here is for 'contains').
- Zipcode.objects.filter(poly__relate(geom, 'T*T***FF*'))
+ Zipcode.objects.filter(poly__relate=(geom, 'T*T***FF*'))
PostGIS SQL equivalent::
@@ -308,7 +308,7 @@ strings are case-insensitive.
Example::
- Zipcode.objects.filter(poly__relate(geom, 'anyinteract'))
+ Zipcode.objects.filter(poly__relate=(geom, 'anyinteract'))
Oracle SQL equivalent::