From 748003827970cfc57cb26db256b72d16e504bb37 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Thu, 1 Jul 2010 12:16:31 +0000 Subject: [PATCH] Haddock hacks to fix whitespace consistency --- GHC/Arr.lhs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GHC/Arr.lhs b/GHC/Arr.lhs index 8a41653..639405d 100644 --- a/GHC/Arr.lhs +++ b/GHC/Arr.lhs @@ -49,13 +49,13 @@ default () -- An implementation is entitled to assume the following laws about these -- operations: -- --- * @'inRange' (l,u) i == 'elem' i ('range' (l,u))@ +-- * @'inRange' (l,u) i == 'elem' i ('range' (l,u))@ @ @ -- -- * @'range' (l,u) '!!' 'index' (l,u) i == i@, when @'inRange' (l,u) i@ -- --- * @'map' ('index' (l,u)) ('range' (l,u))) == [0..'rangeSize' (l,u)-1]@ +-- * @'map' ('index' (l,u)) ('range' (l,u))) == [0..'rangeSize' (l,u)-1]@ @ @ -- --- * @'rangeSize' (l,u) == 'length' ('range' (l,u))@ +-- * @'rangeSize' (l,u) == 'length' ('range' (l,u))@ @ @ -- -- Minimal complete instance: 'range', 'index' and 'inRange'. -- -- 1.7.10.4