summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJoshua Price <2855417+ElderEphemera@users.noreply.github.com>2020-06-28 00:52:48 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-06-30 07:10:49 -0400
commit85310fb83fdb7d7294bd453026102fc42000bf14 (patch)
tree990c7e65f70b43e5b6632e07b7038b0d87e73a85 /docs
parent81704a6f3b155b0bfbc20f53cd821be3cb9006a7 (diff)
downloadhaskell-85310fb83fdb7d7294bd453026102fc42000bf14.tar.gz
Add missing Ix instances for tuples of size 6 through 15 (#16643)
Diffstat (limited to 'docs')
-rw-r--r--docs/users_guide/bugs.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/users_guide/bugs.rst b/docs/users_guide/bugs.rst
index b5ac79d457..8734b86e96 100644
--- a/docs/users_guide/bugs.rst
+++ b/docs/users_guide/bugs.rst
@@ -530,9 +530,8 @@ Large tuple support
The Haskell Report only requires implementations to provide tuple
types and their accompanying standard instances up to size 15. GHC
limits the size of tuple types to 62 and provides instances of
- ``Eq``, ``Ord``, ``Bounded``, ``Read``, and ``Show`` for tuples up
- to size 15. However, ``Ix`` instances are provided only for tuples
- up to size 5.
+ ``Eq``, ``Ord``, ``Bounded``, ``Read``, ``Show``, and ``Ix`` for
+ tuples up to size 15.
.. _bugs: