From: Simon Marlow Date: Thu, 1 Jul 2010 11:32:53 +0000 (+0000) Subject: doc wibble: nonstrict -> non-strict X-Git-Url: http://git.megacz.com/?p=ghc-base.git;a=commitdiff_plain;h=9708f4c2dd652dfd4a0181e35d184b852124d547 doc wibble: nonstrict -> non-strict --- 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]])