From 45a93e40efdf8ff280a559a9fed4377ba7f60ab0 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Wed, 9 Sep 2015 21:09:25 +0200 Subject: [PATCH] Fix documentation --- src/Data/Number/Internal.hs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Data/Number/Internal.hs b/src/Data/Number/Internal.hs index f36534a..5a5efd0 100644 --- a/src/Data/Number/Internal.hs +++ b/src/Data/Number/Internal.hs @@ -14,7 +14,10 @@ import Data.Number.Types import Data.Number.Peano import Data.Ratio +-- | Homographic function coefficients matrix type Hom = (Whole, Whole, Whole, Whole) + +-- | Bihomographic function coefficients matrix type BiHom = (Whole, Whole, Whole, Whole, Whole, Whole, Whole, Whole) @@ -60,7 +63,7 @@ absorb (a, b, c, d) x = (a*x + b, a, c*x + d, c) -- | Bihomographic function -- --- Given a 'Hom' matrix +-- Given a 'BiHom' matrix -- -- <> --