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