~jaro/balkon

c4368fbcb56f06524d52fbdbbb984be772bb1f8c — Jaro 1 year, 2 months ago fffb832
Fix mistakes in documentation comments.
1 files changed, 1 insertions(+), 1 deletions(-)

M src/Data/Text/ParagraphLayout/Rect.hs
M src/Data/Text/ParagraphLayout/Rect.hs => src/Data/Text/ParagraphLayout/Rect.hs +1 -1
@@ 21,7 21,7 @@ data Rect a = Rect { x_origin :: a, y_origin :: a, x_size :: a, y_size :: a }
width :: Num a => Rect a -> a
width r = abs $ x_size r

-- | Absolute difference between the X coordinates of the rectangle's sides.
-- | Absolute difference between the Y coordinates of the rectangle's sides.
height :: Num a => Rect a -> a
height r = abs $ y_size r