Skip to content

Commit 09494eb

Browse files
visrmax-sixty
authored andcommitted
fix a few typos in rst files (#2607)
1 parent 9e8707d commit 09494eb

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

doc/api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ Universal functions
377377
.. warning::
378378

379379
With recent versions of numpy, dask and xarray, NumPy ufuncs are now
380-
supported directly on all xarray and dask objects. This obliviates the need
380+
supported directly on all xarray and dask objects. This obviates the need
381381
for the ``xarray.ufuncs`` module, which should not be used for new code
382382
unless compatibility with versions of NumPy prior to v1.13 is required.
383383

doc/computation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ This means, for example, that you always subtract an array from its transpose:
267267
268268
c - c.T
269269
270-
You can explicitly broadcast xaray data structures by using the
270+
You can explicitly broadcast xarray data structures by using the
271271
:py:func:`~xarray.broadcast` function:
272272

273273
.. ipython:: python

doc/examples/monthly-means.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ for each monthly data record - calculate weights using
130130
``groupby('time.season')``
131131

132132
Finally, we just need to multiply our weights by the ``Dataset`` and sum
133-
allong the time dimension.
133+
along the time dimension.
134134

135135
.. code:: python
136136

doc/interpolation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ To interpolate data with a :py:func:`numpy.datetime64` coordinate you can pass a
5757
da_dt64.interp(time='2000-01-02')
5858
5959
The interpolated data can be merged into the original :py:class:`~xarray.DataArray`
60-
by specifing the time periods required.
60+
by specifying the time periods required.
6161

6262
.. ipython:: python
6363
@@ -232,7 +232,7 @@ then make the interpolation
232232
dropped
233233
dropped.interp(x=[0.5, 1.5, 2.5], method='cubic')
234234
235-
If NaNs are distributed rondomly in your multidimensional array,
235+
If NaNs are distributed randomly in your multidimensional array,
236236
dropping all the columns containing more than one NaNs by
237237
:py:meth:`~xarray.DataArray.dropna` may lose a significant amount of information.
238238
In such a case, you can fill NaN by :py:meth:`~xarray.DataArray.interpolate_na`,

doc/pandas.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ However, you will need to set dimension names explicitly, either with the
152152
Transitioning from pandas.Panel to xarray
153153
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
154154

155-
:py:class:`~pandas.Panel`, pandas's data structure for 3D arrays, has always
155+
:py:class:`~pandas.Panel`, pandas' data structure for 3D arrays, has always
156156
been a second class data structure compared to the Series and DataFrame. To
157157
allow pandas developers to focus more on its core functionality built around
158158
the DataFrame, pandas plans to eventually deprecate Panel.

doc/plotting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ about three or four dimensional arrays? That's where facets become helpful.
461461
Consider the temperature data set. There are 4 observations per day for two
462462
years which makes for 2920 values along the time dimension.
463463
One way to visualize this data is to make a
464-
seperate plot for each time period.
464+
separate plot for each time period.
465465

466466
The faceted dimension should not have too many values;
467467
faceting on the time dimension will produce 2920 plots. That's

doc/roadmap.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Engaging more users
186186

187187
Like many open-source projects, the documentation of xarray has grown
188188
together with the library's features. While we think that the xarray
189-
documentation is comprehensive already, we aknowledge that the adoption
189+
documentation is comprehensive already, we acknowledge that the adoption
190190
of xarray might be slowed down because of the substantial time
191191
investment required to learn its working principles. In particular,
192192
non-computer scientists or users less familiar with the pydata ecosystem
@@ -198,7 +198,7 @@ In order to lower this adoption barrier, we propose to:
198198
- Develop entry-level tutorials for users with different backgrounds. For
199199
example, we would like to develop tutorials for users with or without
200200
previous knowledge of pandas, numpy, netCDF, etc. These tutorials may be
201-
built as part of xarray's documentation or included in a seperate repository
201+
built as part of xarray's documentation or included in a separate repository
202202
to enable interactive use (e.g. mybinder.org).
203203
- Document typical user workflows in a dedicated website, following the example
204204
of `dask-stories

doc/time-series.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Datetime indexing
8282

8383
xarray borrows powerful indexing machinery from pandas (see :ref:`indexing`).
8484

85-
This allows for several useful and suscinct forms of indexing, particularly for
85+
This allows for several useful and succinct forms of indexing, particularly for
8686
`datetime64` data. For example, we support indexing with strings for single
8787
items and with the `slice` object:
8888

0 commit comments

Comments
 (0)