diff --git a/docs/ref/contrib/gis/geoquerysets.txt b/docs/ref/contrib/gis/geoquerysets.txt
index 66afc3d..66a91f6 100644
|
a
|
b
|
each element of this GeoQuerySet.
|
| 701 | 701 | ``distance`` |
| 702 | 702 | ~~~~~~~~~~~~ |
| 703 | 703 | |
| 704 | | .. method:: GeoQuerySet.distance(geom, **kwargs) |
| | 704 | .. method:: GeoQuerySet.distance(geom, att='distance', **kwargs) |
| 705 | 705 | |
| 706 | | This method takes a geometry as a parameter, and attaches a ``distance`` |
| | 706 | This method takes a geometry as a parameter, and attaches an |
| 707 | 707 | attribute to every model in the returned queryset that contains the |
| 708 | 708 | distance (as a :class:`~django.contrib.gis.measure.Distance` object) to the given geometry. |
| 709 | 709 | |
| | 710 | ``att``, wich defaults to ``'distance'``, is the name of the attached attribute. |
| | 711 | |
| 710 | 712 | In the following example (taken from the `GeoDjango distance tests`__), |
| 711 | 713 | the distance from the `Tasmanian`__ city of Hobart to every other |
| 712 | 714 | :class:`PointField` in the ``AustraliaCity`` queryset is calculated:: |