summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Berntsen <alexander@plaimi.net>2014-05-16 17:32:04 +0200
committerAustin Seipp <austin@well-typed.com>2014-08-19 06:11:23 -0500
commit2fc22949e30eab9f751be90e788ebb2b56f1b132 (patch)
tree309b815a8d4a36937b797da9900285cee984a96f
parent89f5f314e32c3e80c71f4b3dcc8835ae74d7d57f (diff)
downloadhaskell-2fc22949e30eab9f751be90e788ebb2b56f1b132.tar.gz
Mention that `Data.Ix` uses row-major indexing
This addresses Trac #8712 by simply mentioning row-major indexing, thereby removing any ambiguity. Signed-off-by: Austin Seipp <austin@well-typed.com>
-rw-r--r--libraries/base/Data/Ix.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/Data/Ix.hs b/libraries/base/Data/Ix.hs
index bdfea60b73..d3be1c4759 100644
--- a/libraries/base/Data/Ix.hs
+++ b/libraries/base/Data/Ix.hs
@@ -12,7 +12,7 @@
--
-- The 'Ix' class is used to map a contiguous subrange of values in
-- type onto integers. It is used primarily for array indexing
--- (see the array package).
+-- (see the array package). 'Ix' uses row-major order.
--
-----------------------------------------------------------------------------