Skip to content

Commit 76c70be

Browse files
jenshnielsenmdboom
authored andcommitted
Change docstring to reflect new default interpolation
1 parent 14281fd commit 76c70be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/image.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -734,8 +734,8 @@ class NonUniformImage(AxesImage):
734734
def __init__(self, ax, **kwargs):
735735
"""
736736
kwargs are identical to those for AxesImage, except
737-
that 'interpolation' defaults to 'nearest', and 'bilinear'
738-
is the only alternative.
737+
that 'nearest', and 'bilinear' are the only supported 'interpolation'
738+
options.
739739
"""
740740
interp = kwargs.pop('interpolation', 'nearest')
741741
AxesImage.__init__(self, ax,

0 commit comments

Comments
 (0)