X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=GHC%2FArr.lhs;h=8a416530460162c356bc0699c6a051a66198cd11;hb=9708f4c2dd652dfd4a0181e35d184b852124d547;hp=09c50cf324fb71ae930f99917f08b20470d9da48;hpb=c14fb1c6eb6fd79c99cb5f3d82d2463f76d8c955;p=ghc-base.git diff --git a/GHC/Arr.lhs b/GHC/Arr.lhs index 09c50cf..8a41653 100644 --- a/GHC/Arr.lhs +++ b/GHC/Arr.lhs @@ -411,7 +411,7 @@ arrEleBottom = error "(Array.!): undefined array element" -- -- Because the indices must be checked for these errors, 'array' is -- strict in the bounds argument and in the indices of the association --- list, but nonstrict in the values. Thus, recurrences such as the +-- list, but non-strict in the values. Thus, recurrences such as the -- following are possible: -- -- > a = array (1,100) ((1,1) : [(i, i * a!(i-1)) | i <- [2..100]]) @@ -560,7 +560,7 @@ assocs :: Ix i => Array i e -> [(i, e)] assocs arr@(Array l u _ _) = [(i, arr ! i) | i <- range (l,u)] --- | The 'accumArray' deals with repeated indices in the association +-- | The 'accumArray' function deals with repeated indices in the association -- list using an /accumulating function/ which combines the values of -- associations with the same index. -- For example, given a list of values of some index type, @hist@