Skip to content

Commit 0ea0704

Browse files
authored
fix typos (using codespell) (#138)
1 parent 8298a60 commit 0ea0704

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,4 +152,4 @@ Mayor release, mostly introducing the new `colorbar` functionality.
152152

153153
## v0.1.0 (13.03.2018)
154154

155-
* Functionality as developped for [pyvis](https://github.com/C2SM/pyvis/) (see below), packed into a module.
155+
* Functionality as developed for [pyvis](https://github.com/C2SM/pyvis/) (see below), packed into a module.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ See [CHANGELOG.md](CHANGELOG.md).
4343

4444
## History
4545

46-
This package bases on functions developped for the [python visualisation workshop at C2SM](https://github.com/C2SM/pyvis/).
46+
This package bases on functions developed for the [python visualisation workshop at C2SM](https://github.com/C2SM/pyvis/).

docs/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ pip install git+https://github.com/mathause/mplotutils
3131

3232
### Install latest released version
3333

34-
Go to the [newest release on github](https://github.com/mathause/mplotutils/releases/latest), copy the URL of the `*.tar.gz` source file at the botton and then use pip to install it (i.e. `pip install ...`).
34+
Go to the [newest release on github](https://github.com/mathause/mplotutils/releases/latest), copy the URL of the `*.tar.gz` source file at the bottom and then use pip to install it (i.e. `pip install ...`).

mplotutils/cartopy_utils.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ def sample_data_map(nlons, nlats):
2424
Returns
2525
-------
2626
lon : ndarray
27-
Array of the longitude coordiantes.
27+
Array of the longitude coordinates.
2828
lat : ndarray
29-
Array of the latitude coordiantes.
29+
Array of the latitude coordinates.
3030
data : ndarray
3131
Sample data.
3232
@@ -63,7 +63,7 @@ def sample_dataarray(nlon, nlat):
6363
Returns
6464
-------
6565
data : xr.DataArray
66-
Sample data with coordiantes.
66+
Sample data with coordinates.
6767
6868
Notes
6969
-----

mplotutils/tests/test_hatch.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def test_hatch_linewidth(function):
121121

122122
assert mpl.rcParams["hatch.linewidth"] == 0.25
123123

124-
# chaning away from the default linewidth does not raise a warning
124+
# changing away from the default linewidth does not raise a warning
125125
with subplots_context(1, 1, subplot_kw=subplot_kw) as (__, ax):
126126

127127
function(da, "*", ax=ax)
@@ -132,7 +132,7 @@ def test_hatch_linewidth(function):
132132

133133
assert mpl.rcParams["hatch.linewidth"] == 1
134134

135-
# chaning away from the default linewidth does not raise a warning
135+
# changing away from the default linewidth does not raise a warning
136136
with subplots_context(1, 1, subplot_kw=subplot_kw) as (__, ax):
137137

138138
function(da, "*", ax=ax, linewidth=2)

0 commit comments

Comments
 (0)