Skip to content

Commit d19e190

Browse files
committed
[DATALAD RUNCMD] Do interactive fixing of some ambigous typos
=== Do not change lines below === { "chain": [], "cmd": "codespell -w -i 3 -C 2", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^
1 parent adf30c7 commit d19e190

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

doc/discussion/time_series_access.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ smaller.
4747
~~~~~~~~~~~~~~~~~~~~
4848

4949
:func:`ut.index_at` returns the indices of the values in the array that are
50-
the largest time values, smaller thatn the input values t. That is, it returns i
50+
the largest time values, smaller than the input values t. That is, it returns i
5151
for which $t_i$ is the maximal one, which still fulfills: $t_i<t$.
5252

5353
Questions
@@ -56,7 +56,7 @@ The following questions apply to all three cases:
5656

5757
* what happens when the t is smaller than the smallest entry in the array
5858
return None?
59-
* what happens when t is larget than the last entry in the time array? return
59+
* what happens when t is larger than the last entry in the time array? return
6060
None?
6161

6262
:func:`at`

nitime/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
- ``analysis``: Contains *Analyzer* objects, which implement particular
1414
analysis methods on the time-series objects
1515
16-
- ``viz``: Vizualization
16+
- ``viz``: Visualization
1717
1818
All of the sub-modules will be imported as part of ``__init__``, so that users
1919
have all of these things at their fingertips.

nitime/algorithms/tests/test_autoregressive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def test_AR_LD():
6161
"""
6262
6363
Test the Levinson Durbin estimate of the AR coefficients against the
64-
expercted PSD
64+
expected PSD
6565
6666
"""
6767
arsig, _, _ = utils.ar_generator(N=512)

nitime/viz.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ def plot_tseries(time_series, fig=None, axis=0,
6363
subplot: an axis number (if there are several in the figure to be opened),
6464
defaults to 0.
6565
66-
xticks: optional, list, specificies what values to put xticks on. Defaults
66+
xticks: optional, list, specifies what values to put xticks on. Defaults
6767
to the matlplotlib-generated.
6868
69-
yticks: optional, list, specificies what values to put xticks on. Defaults
69+
yticks: optional, list, specifies what values to put xticks on. Defaults
7070
to the matlplotlib-generated.
7171
72-
xlabel: optional, list, specificies what labels to put on xticks
72+
xlabel: optional, list, specifies what labels to put on xticks
7373
74-
ylabel: optional, list, specificies what labels to put on yticks
74+
ylabel: optional, list, specifies what labels to put on yticks
7575
7676
yerror: optional, UniformTimeSeries with the same sampling_rate and number
7777
of samples and channels as time_series, the error will be displayed as a

0 commit comments

Comments
 (0)