diff --git a/docs/language/core.rst b/docs/language/core.rst index 76585e9..6de4af2 100644 --- a/docs/language/core.rst +++ b/docs/language/core.rst @@ -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)