From 24359336f78e42f515c9e8dfd5e3a5cc2e70efcb Mon Sep 17 00:00:00 2001 From: Philip Xu Date: Sun, 25 Dec 2016 16:59:41 -0500 Subject: [PATCH] Remove trailing whitespace --- docs/language/core.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)