Skip to content

Commit

Permalink
README: fixed year in copyright and code highlighting (#310)
Browse files Browse the repository at this point in the history
  • Loading branch information
atnartur authored and KostyaEsmukov committed Jul 3, 2018
1 parent d683ed2 commit eb8eeb5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The various geocoder classes are located in `geopy.geocoders`_.
geopy is tested against CPython (versions 2.7, 3.4, 3.5, 3.6), PyPy, and
PyPy3. geopy does not and will not support CPython 2.6.

© geopy contributors 2006-2015 (see AUTHORS) under the `MIT
© geopy contributors 2006-2018 (see AUTHORS) under the `MIT
License <https://github.com/geopy/geopy/blob/master/LICENSE>`__.

Installation
Expand All @@ -68,7 +68,7 @@ Geocoding

To geolocate a query to an address and coordinates:

::
.. code:: python
>>> from geopy.geocoders import Nominatim
>>> geolocator = Nominatim()
Expand All @@ -82,7 +82,7 @@ To geolocate a query to an address and coordinates:
To find the address corresponding to a set of coordinates:

::
.. code:: python
>>> from geopy.geocoders import Nominatim
>>> geolocator = Nominatim()
Expand All @@ -107,7 +107,7 @@ with a default of the geodesic distance available as the function

Here's an example usage of the geodesic distance:

::
.. code:: python
>>> from geopy.distance import geodesic
>>> newport_ri = (41.49008, -71.312796)
Expand All @@ -117,7 +117,7 @@ Here's an example usage of the geodesic distance:
Using great-circle distance:

::
.. code:: python
>>> from geopy.distance import great_circle
>>> newport_ri = (41.49008, -71.312796)
Expand Down

0 comments on commit eb8eeb5

Please sign in to comment.