Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f645179

Browse files
committed
Fix long string
1 parent ed6d3e6 commit f645179

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6815,9 +6815,9 @@ def hist2d(self, x, y, bins=10, range=None, density=None, weights=None,
68156815
considered outliers and not tallied in the histogram.
68166816
68176817
density : boolean, optional
6818-
If False, the default, plots and returns the number of samples in each bin.
6819-
If True, returns the probability *density* function at the bin,
6820-
``bin_count / sample_count / bin_area``.
6818+
If False, the default, plots and returns the number of samples
6819+
in each bin. If True, returns the probability *density*
6820+
function at the bin, ``bin_count / sample_count / bin_area``.
68216821
Default is ``None`` for both *normed* and *density*. If either is
68226822
set, then that value will be used. If neither are set, then the
68236823
args will be treated as ``False``.

0 commit comments

Comments
 (0)