diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2024-07-22 01:14:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-22 01:14:25 (GMT) |
commit | bc264eac3ad14dab748e33b3d714c2674872791f (patch) | |
tree | b237ad9d470b8f8e8b8265231758f1c59f07cd1e /Doc/library/fractions.rst | |
parent | 728432c8043edc07bb8a24b180a70778fcd35878 (diff) | |
download | cpython-bc264eac3ad14dab748e33b3d714c2674872791f.zip cpython-bc264eac3ad14dab748e33b3d714c2674872791f.tar.gz cpython-bc264eac3ad14dab748e33b3d714c2674872791f.tar.bz2 |
Docs: spelling and grammar fixes (#122084)
Corrected some grammar and spelling issues in documentation.
Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Diffstat (limited to 'Doc/library/fractions.rst')
-rw-r--r-- | Doc/library/fractions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/fractions.rst b/Doc/library/fractions.rst index d8796de..2ee1549 100644 --- a/Doc/library/fractions.rst +++ b/Doc/library/fractions.rst @@ -92,7 +92,7 @@ another rational number, or from a string. .. versionchanged:: 3.9 The :func:`math.gcd` function is now used to normalize the *numerator* - and *denominator*. :func:`math.gcd` always return a :class:`int` type. + and *denominator*. :func:`math.gcd` always returns an :class:`int` type. Previously, the GCD type depended on *numerator* and *denominator*. .. versionchanged:: 3.11 |