Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minor: fix typo in docstrings #581

Merged
merged 1 commit into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pylops/signalprocessing/patch2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class Patch2D(LinearOperator):
Size of model in the transformed domain
tapertype : :obj:`str`, optional
Type of taper (``hanning``, ``cosine``, ``cosinesquare`` or ``None``)
savetaper: :obj:`bool`, optional
savetaper : :obj:`bool`, optional
.. versionadded:: 2.3.0

Save all tapers and apply them in one go (``True``) or save unique tapers and apply them one by one (``False``).
Expand Down
2 changes: 1 addition & 1 deletion pylops/signalprocessing/patch3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class Patch3D(LinearOperator):
Size of model in the transformed domain
tapertype : :obj:`str`, optional
Type of taper (``hanning``, ``cosine``, ``cosinesquare`` or ``None``)
savetaper: :obj:`bool`, optional
savetaper : :obj:`bool`, optional
.. versionadded:: 2.3.0

Save all tapers and apply them in one go (``True``) or save unique tapers and apply them one by one (``False``).
Expand Down
2 changes: 1 addition & 1 deletion pylops/signalprocessing/sliding1d.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class Sliding1D(LinearOperator):
Number of samples of overlapping part of window
tapertype : :obj:`str`, optional
Type of taper (``hanning``, ``cosine``, ``cosinesquare`` or ``None``)
savetaper: :obj:`bool`, optional
savetaper : :obj:`bool`, optional
.. versionadded:: 2.3.0

Save all tapers and apply them in one go (``True``) or save unique tapers and apply them one by one (``False``).
Expand Down
2 changes: 1 addition & 1 deletion pylops/signalprocessing/sliding2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ class Sliding2D(LinearOperator):
Number of samples of overlapping part of window
tapertype : :obj:`str`, optional
Type of taper (``hanning``, ``cosine``, ``cosinesquare`` or ``None``)
savetaper: :obj:`bool`, optional
savetaper : :obj:`bool`, optional
.. versionadded:: 2.3.0

Save all tapers and apply them in one go (``True``) or save unique tapers and apply them one by one (``False``).
Expand Down
2 changes: 1 addition & 1 deletion pylops/signalprocessing/sliding3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class Sliding3D(LinearOperator):
to spatial axes in the data
tapertype : :obj:`str`, optional
Type of taper (``hanning``, ``cosine``, ``cosinesquare`` or ``None``)
savetaper: :obj:`bool`, optional
savetaper : :obj:`bool`, optional
.. versionadded:: 2.3.0

Save all tapers and apply them in one go (``True``) or save unique tapers and apply them one by one (``False``).
Expand Down