Skip to content

Commit

Permalink
Merge pull request scipy#11734 from AtsushiSakai/issue_11630
Browse files Browse the repository at this point in the history
Doc: fix inaccurate docstring of SmoothBivariateSpline.
  • Loading branch information
rgommers committed Mar 28, 2020
2 parents f323585 + f4539d5 commit 31ceb9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scipy/interpolate/fitpack2.py
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ class SmoothBivariateSpline(BivariateSpline):
bbox : array_like, optional
Sequence of length 4 specifying the boundary of the rectangular
approximation domain. By default,
``bbox=[min(x,tx),max(x,tx), min(y,ty),max(y,ty)]``.
``bbox=[min(x), max(x), min(y), max(y)]``.
kx, ky : ints, optional
Degrees of the bivariate spline. Default is 3.
s : float, optional
Expand Down

0 comments on commit 31ceb9f

Please sign in to comment.