### Problem In `resampler.py` the function `wsinterp()` has docstring that says ``` 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]. ``` This doesn't make sense, and it's also not what the code is doing. I think `xp[-1]` here should be `xp[0]`. <!-- For a bug report, please copy and paste any error messages from the application or command-line here. For a feature request, please state how the new functionality could benefit the community. --> ### Proposed solution As suggested.