diff --git a/django/contrib/gis/geos/__init__.py b/django/contrib/gis/geos/__init__.py
index 48b321c..65e31e0 100644
a
|
b
|
|
1 | 1 | """ |
2 | 2 | The GeoDjango GEOS module. Please consult the GeoDjango documentation |
3 | 3 | for more details: |
4 | | http://geodjango.org/docs/geos.html |
| 4 | https://docs.djangoproject.com/en/dev/ref/contrib/gis/ |
5 | 5 | """ |
6 | 6 | from .collections import GeometryCollection, MultiPoint, MultiLineString, MultiPolygon # NOQA |
7 | 7 | from .error import GEOSException, GEOSIndexError # NOQA |
diff --git a/django/contrib/gis/utils/layermapping.py b/django/contrib/gis/utils/layermapping.py
index 1f7de82..fcc4537 100644
a
|
b
|
|
4 | 4 | vector files (e.g. SHP files) to Geographic-enabled Django models. |
5 | 5 | |
6 | 6 | For more information, please consult the GeoDjango documentation: |
7 | | http://geodjango.org/docs/layermapping.html |
| 7 | https://docs.djangoproject.com/en/dev/ref/contrib/gis/layermapping/ |
8 | 8 | """ |
9 | 9 | import sys |
10 | 10 | from decimal import Decimal, InvalidOperation as DecimalInvalidOperation |