Closed
Description
Bug report
Bug summary
The documentation for matplotlib.pyplot.figure shows the wrong type for the figsize argument's tuple -- it is float but instead the docs say integer.
Actual outcome
figsize : tuple of integers, optional, default: None
width, height in inches. If not provided, defaults to rcParams["figure.figsize"] = [6.4, 4.8].
Expected outcome
figsize : tuple of floats, optional, default: None
width, height in inches. If not provided, defaults to rcParams["figure.figsize"] = [6.4, 4.8].