diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-26 11:43:28 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-26 11:43:28 (GMT) |
commit | c7b1a0bbe2ae298ba0471703ad6d5ef86ae5881d (patch) | |
tree | 35c0d8e77d1c248de80b751339d293a5ff78ffe6 /Doc/library/statistics.rst | |
parent | 4931122de80c6e7f14162ecc9c37b650a4a01a4a (diff) | |
download | cpython-c7b1a0bbe2ae298ba0471703ad6d5ef86ae5881d.zip cpython-c7b1a0bbe2ae298ba0471703ad6d5ef86ae5881d.tar.gz cpython-c7b1a0bbe2ae298ba0471703ad6d5ef86ae5881d.tar.bz2 |
Issue #28763: Use double hyphens (rendered as en-dashes) in numerical ranges
in the documentation.
Diffstat (limited to 'Doc/library/statistics.rst')
-rw-r--r-- | Doc/library/statistics.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/statistics.rst b/Doc/library/statistics.rst index ea3d7da..7685621 100644 --- a/Doc/library/statistics.rst +++ b/Doc/library/statistics.rst @@ -191,9 +191,9 @@ However, for reading convenience, most of the examples show sorted sequences. 52.5 In the following example, the data are rounded, so that each value represents - the midpoint of data classes, e.g. 1 is the midpoint of the class 0.5-1.5, 2 - is the midpoint of 1.5-2.5, 3 is the midpoint of 2.5-3.5, etc. With the data - given, the middle value falls somewhere in the class 3.5-4.5, and + the midpoint of data classes, e.g. 1 is the midpoint of the class 0.5--1.5, 2 + is the midpoint of 1.5--2.5, 3 is the midpoint of 2.5--3.5, etc. With the data + given, the middle value falls somewhere in the class 3.5--4.5, and interpolation is used to estimate it: .. doctest:: |