Skip to content

Commit d063002

Browse files
committed
Fix long string
1 parent 7ba1ecb commit d063002

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/matplotlib/axes/_axes.py

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

0 commit comments

Comments
 (0)