X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=GHC%2FArr.lhs;h=8a416530460162c356bc0699c6a051a66198cd11;hb=487b9d4571a847ee0273b4627aaa135c46a51b8d;hp=1b2f0bb543da79b6bb50b1a0727593544732ba38;hpb=2cf27b8981aec980350a291b90499916f1fbc8af;p=ghc-base.git diff --git a/GHC/Arr.lhs b/GHC/Arr.lhs index 1b2f0bb..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]])