summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/ref/contrib/gis/geoquerysets.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/contrib/gis/geoquerysets.txt b/docs/ref/contrib/gis/geoquerysets.txt
index 0b1fee3bfe..957a0497af 100644
--- a/docs/ref/contrib/gis/geoquerysets.txt
+++ b/docs/ref/contrib/gis/geoquerysets.txt
@@ -492,16 +492,16 @@ strictly_below
*Availability*: PostGIS
-Tests if the geometry field's bounding box is strictly above the lookup
+Tests if the geometry field's bounding box is strictly below the lookup
geometry's bounding box.
Example::
- Zipcode.objects.filter(poly__strictly_above=geom)
+ Zipcode.objects.filter(poly__strictly_below=geom)
PostGIS equivalent::
- SELECT ... WHERE poly |>> geom
+ SELECT ... WHERE poly <<| geom
.. _distance-lookups: