Remove trailing whitespace

This commit is contained in:
Philip Xu 2016-12-25 16:59:41 -05:00
parent eb8fe0b085
commit 24359336f7

View File

@ -284,14 +284,14 @@ fraction
Returns a Python object of type ``fractions.Fraction``.
.. code-block:: hy
=> (fraction 1 2)
Fraction(1, 2)
Note that Hy has a built-in fraction literal that does the same thing:
.. code-block:: hy
=> 1/2
Fraction(1, 2)