Skip to content

Commit

Permalink
Fix typos on docstrings (#281)
Browse files Browse the repository at this point in the history
Fix typo on description of data_names parameters on BaseGridder.grid
method. Fix typo on description of BaseGridder.project_coordinates
method.
  • Loading branch information
santisoler committed Sep 10, 2020
1 parent 90ac842 commit b807423
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions verde/base/base_classes.py
Expand Up @@ -380,7 +380,7 @@ def grid(
order: northing dimension, easting dimension.
**NOTE: This is an exception to the "easting" then
"northing" pattern but is required for compatibility with xarray.**
data_names : list of None
data_names : list or None
The name(s) of the data variables in the output grid. Defaults to
``['scalars']`` for scalar data,
``['east_component', 'north_component']`` for 2D vector data, and
Expand Down Expand Up @@ -659,7 +659,7 @@ def _get_extra_coords_names(self, coordinates):

def project_coordinates(coordinates, projection, **kwargs):
"""
Apply projection to given coordiantes
Apply projection to given coordinates
Allows to apply projections to any number of coordinates, assuming
that the first ones are ``longitude`` and ``latitude``.
Expand Down

0 comments on commit b807423

Please sign in to comment.