Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos on docstrings #281

Merged
merged 4 commits into from Sep 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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