diff options
author | Bodigrim <andrew.lelechenko@gmail.com> | 2020-05-18 16:17:14 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-06-01 06:35:36 -0400 |
commit | 7e5220e25baedfa7ae0ec055c03cb4429dd1af05 (patch) | |
tree | 29ccb420b91aecb73161a8ce07f91cb015247e48 /libraries | |
parent | aab606e4f028d3c418aafc9710003f32f8d8fe12 (diff) | |
download | haskell-7e5220e25baedfa7ae0ec055c03cb4429dd1af05.tar.gz |
Apply suggestion to libraries/base/GHC/Exts.hs
Diffstat (limited to 'libraries')
-rwxr-xr-x | libraries/base/GHC/Exts.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/GHC/Exts.hs b/libraries/base/GHC/Exts.hs index f4c7fd3aa6..de66508fcb 100755 --- a/libraries/base/GHC/Exts.hs +++ b/libraries/base/GHC/Exts.hs @@ -189,7 +189,7 @@ class IsList l where -- 'fromList'. If the given number does not equal to the input list's length -- the behaviour of 'fromListN' is not specified. -- - -- prop> fromListN (length xs) == fromList xs + -- prop> fromListN (length xs) xs == fromList xs fromListN :: Int -> [Item l] -> l fromListN _ = fromList |