diff options
Diffstat (limited to 'libraries/base/GHC/List.hs')
-rw-r--r-- | libraries/base/GHC/List.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/GHC/List.hs b/libraries/base/GHC/List.hs index 6523c40f73..6b1a94fafe 100644 --- a/libraries/base/GHC/List.hs +++ b/libraries/base/GHC/List.hs @@ -720,7 +720,7 @@ maximum [] = errorEmptyList "maximum" maximum xs = foldl1' max xs -- We want this to be specialized so that with a strict max function, GHC --- produces good code. Note that to see if this is happending, one has to +-- produces good code. Note that to see if this is happening, one has to -- look at -ddump-prep, not -ddump-core! {-# SPECIALIZE maximum :: [Int] -> Int #-} {-# SPECIALIZE maximum :: [Integer] -> Integer #-} |