Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions googlemaps/geocoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def geocode(client, address=None, components=None, bounds=None, region=None,
:type region: string

:param language: The language in which to return results.
:type langauge: string
:type language: string

:rtype: list of geocoding results.
"""
Expand Down Expand Up @@ -85,7 +85,7 @@ def reverse_geocode(client, latlng, result_type=None, location_type=None,
:type location_type: list of strings

:param language: The language in which to return results.
:type langauge: string
:type language: string

:rtype: list of reverse geocoding results.
"""
Expand Down
10 changes: 5 additions & 5 deletions googlemaps/places.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def find_place(client, input, input_type, fields=None, location_bias=None,
:type location_bias: string

:param language: The language in which to return results.
:type langauge: string
:type language: string

:rtype: result dict with the following keys:
status: status code
Expand Down Expand Up @@ -132,7 +132,7 @@ def places(client, query, location=None, radius=None, language=None,
:type radius: int

:param language: The language in which to return results.
:type langauge: string
:type language: string

:param min_price: Restricts results to only those places with no less than
this price level. Valid values are in the range from 0 (most affordable)
Expand Down Expand Up @@ -194,7 +194,7 @@ def places_nearby(client, location=None, radius=None, keyword=None,
:type keyword: string

:param language: The language in which to return results.
:type langauge: string
:type language: string

:param min_price: Restricts results to only those places with no less than
this price level. Valid values are in the range from 0
Expand Down Expand Up @@ -459,7 +459,7 @@ def places_autocomplete(client, input_text, session_token, offset=None,
:type radius: int

:param language: The language in which to return results.
:type langauge: string
:type language: string

:param types: Restricts the results to places matching the specified type.
The full list of supported types is available here:
Expand Down Expand Up @@ -506,7 +506,7 @@ def places_autocomplete_query(client, input_text, offset=None, location=None,
:type radius: number

:param language: The language in which to return results.
:type langauge: string
:type language: string

:rtype: list of predictions
"""
Expand Down