Skip to content

Commit

Permalink
Merge pull request #2087 from ericpre/fix_typos_docstring
Browse files Browse the repository at this point in the history
Fix typo in the docstring of a few methods in BaseSignal.
  • Loading branch information
francisco-dlp committed Dec 5, 2018
2 parents 12e42de + 107d59a commit 8793bea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hyperspy/signal.py
Original file line number Diff line number Diff line change
Expand Up @@ -3242,7 +3242,7 @@ def integrate_simpson(self, axis, out=None):
>>> s = BaseSignal(np.random.random((64,64,1024)))
>>> s.data.shape
(64,64,1024)
>>> s.var(-1).data.shape
>>> s.integrate_simpson(-1).data.shape
(64,64)
"""
Expand Down Expand Up @@ -3434,7 +3434,7 @@ def integrate1D(self, axis, out=None):
>>> s = BaseSignal(np.random.random((64,64,1024)))
>>> s.data.shape
(64,64,1024)
>>> s.var(-1).data.shape
>>> s.integrate1D(-1).data.shape
(64,64)
"""
Expand Down Expand Up @@ -3468,7 +3468,7 @@ def indexmin(self, axis, out=None, rechunk=True):
>>> s = BaseSignal(np.random.random((64,64,1024)))
>>> s.data.shape
(64,64,1024)
>>> s.indexmax(-1).data.shape
>>> s.indexmin(-1).data.shape
(64,64)
"""
Expand Down

0 comments on commit 8793bea

Please sign in to comment.