Skip to content

Commit ce1195d

Browse files
authored
Update widgets.py (#292)
Fixed typo on line 410. Previously said ' """set the lower value of slider to *val*. ' This is inaccurate as the max value is the higher value. Co-authored-by: ShadyNinjaSpy <[email protected]>
1 parent 0807d90 commit ce1195d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mpl_interactions/widgets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ def set_min(self, val):
407407
self.set_val((val, self.val[1]))
408408

409409
def set_max(self, val):
410-
"""Set the lower value of the slider to *val*.
410+
"""Set the higher value of the slider to *val*.
411411
412412
Parameters
413413
----------

0 commit comments

Comments
 (0)