diff options
| author | Sławomir Ehlert <slafs.e@gmail.com> | 2015-05-06 15:51:01 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-05-06 09:58:42 -0400 |
| commit | 64ed8cdc9f2f7333b2a9fd6b318f520278c39293 (patch) | |
| tree | 4a8b8160f9da36e2479a0eec3b1ca322b4d8c8fd /docs | |
| parent | d084176cc1273d5faf6f88eedb4c490e961f3a68 (diff) | |
Fixed typos in docs/ref/contrib/gis/geoquerysets.txt
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/gis/geoquerysets.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/contrib/gis/geoquerysets.txt b/docs/ref/contrib/gis/geoquerysets.txt index e2650cbab0..ae801c8581 100644 --- a/docs/ref/contrib/gis/geoquerysets.txt +++ b/docs/ref/contrib/gis/geoquerysets.txt @@ -279,7 +279,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:: @@ -301,7 +301,7 @@ strings are case-insensitive. Example:: - Zipcode.objects.filter(poly__relate(geom, 'anyinteract')) + Zipcode.objects.filter(poly__relate=(geom, 'anyinteract')) Oracle SQL equivalent:: |
