aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Smeding <tom@tomsmeding.com>2025-05-17 10:56:50 +0200
committerTom Smeding <tom@tomsmeding.com>2025-05-17 10:56:50 +0200
commita65d8cb500be58af8d692e6cf4f56c7ebe039590 (patch)
tree03a44ec9c559bbab7b413b4eeb4a74640d633772 /src
parentddae79099ca944b3685bc02d82e9d72508f4e0e9 (diff)
Nested.hs: Fix typo in doc comment
Diffstat (limited to 'src')
-rw-r--r--src/Data/Array/Nested.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Data/Array/Nested.hs b/src/Data/Array/Nested.hs
index d8010b4..d5874bc 100644
--- a/src/Data/Array/Nested.hs
+++ b/src/Data/Array/Nested.hs
@@ -117,8 +117,8 @@ import GHC.TypeLits
-- $integralRealFloat
--
--- These functions separate top-level functions, and not exposed in instances
--- for 'RealFloat' and 'Integral', because those classes include a variety of
--- other functions that make no sense for arrays.
+-- These functions are separate top-level functions, and not exposed in
+-- instances for 'RealFloat' and 'Integral', because those classes include a
+-- variety of other functions that make no sense for arrays.
-- This problem already occurs with 'fromInteger', 'fromRational' and 'pi', but
-- having 'Num', 'Fractional' and 'Floating' available is just too useful.