Skip to content
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
23 changes: 23 additions & 0 deletions news/docstring-fix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* No News Added: Fix docstring

**Changed:**

* <news item>

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* <news item>

**Security:**

* <news item>
2 changes: 1 addition & 1 deletion src/diffpy/utils/resampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def wsinterp(x, xp, fp, left=None, right=None):
The array of y values associated with xp.
left: float
If given, set fp for x < xp[0] to left. Otherwise, if left is None
(default) or not given, set fp for x < xp[0] to fp evaluated at xp[-1].
(default) or not given, set fp for x < xp[0] to fp evaluated at xp[0].
right: float
If given, set fp for x > xp[-1] to right. Otherwise, if right is None
(default) or not given, set fp for x > xp[-1] to fp evaluated at
Expand Down
Loading