8000 DOC: Fix some typos in mlab (and wrappers.) · matplotlib/matplotlib@e3fb365 · GitHub
[go: up one dir, main page]

Skip to content

Commit e3fb365

Browse files
committed
DOC: Fix some typos in mlab (and wrappers.)
1 parent 5546827 commit e3fb365

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6582,7 +6582,7 @@ def psd(self, x, NFFT=None, Fs=None, Fc=None, detrend=None,
65826582
65836583
line: a :class:`~matplotlib.lines.Line2D` instance
65846584
The line created by this function.
6585-
Only returend if *return_line* is True.
6585+
Only returned if *return_line* is True.
65866586
65876587
Notes
65886588
-----
@@ -6714,7 +6714,7 @@ def csd(self, x, y, NFFT=None, Fs=None, Fc=None, detrend=None,
67146714
67156715
line: a :class:`~matplotlib.lines.Line2D` instance
67166716
The line created by this function.
6717-
Only returend if *return_line* is True.
6717+
Only returned if *return_line* is True.
67186718
67196719
Notes
67206720
-----

lib/matplotlib/mlab.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
Remove the mean from a line.
8080
8181
:func:`demean`
82-
Remove the mean from a line. This function is the same as as
82+
Remove the mean from a line. This function is the same as
8383
:func:`detrend_mean` except for the default *axis*.
8484
8585
:func:`detrend_linear`
@@ -369,7 +369,7 @@ def demean(x, axis=0):
369369
:func:`delinear` and :func:`denone` are other detrend algorithms.
370370
371371
:func:`detrend_mean`
372-
This function is the same as as :func:`detrend_mean` except for the
372+
This function is the same as :func:`detrend_mean` except for the
373373
default *axis*.
374374
'''
375375
return detrend_mean(x, axis=axis)
@@ -392,7 +392,7 @@ def detrend_mean(x, axis=None):
392392
See Also
393393
--------
394394
:func:`demean`
395-
This function is the same as as :func:`demean` except for the default
395+
This function is the same as :func:`demean` except for the default
396396
*axis*.
397397
398398
:func:`detrend_linear`
@@ -438,7 +438,7 @@ def detrend_none(x, axis=None):
438438
See Also
439439
--------
440440
:func:`denone`
441-
This function is the same as as :func:`denone` except for the default
441+
This function is the same as :func:`denone` except for the default
442442
*axis*, which has no effect.
443443
444444
:func:`detrend_mean`
@@ -469,7 +469,7 @@ def detrend_linear(y):
469469
See Also
470470
--------
471471
:func:`delinear`
472-
This function is the same as as :func:`delinear` except for the default
472+
This function is the same as :func:`delinear` except for the default
473473
*axis*.
474474
475475
:func:`detrend_mean`

0 commit comments

Comments
 (0)
0