summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormniip <mniip@mniip.com>2019-06-28 13:50:03 +0300
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-08-07 10:18:07 -0400
commitca8efc496db5fbfce56c19f06fc382c968907fd2 (patch)
treecacff9842a60bd489e18bd0bcfebe607806bbf8d
parent3d32286d212b49c95eba7aa2e013185740099aa1 (diff)
downloadhaskell-ca8efc496db5fbfce56c19f06fc382c968907fd2.tar.gz
Fix documentation
-rw-r--r--docs/users_guide/using.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/users_guide/using.rst b/docs/users_guide/using.rst
index 1db30eab2e..d1c453898f 100644
--- a/docs/users_guide/using.rst
+++ b/docs/users_guide/using.rst
@@ -845,9 +845,9 @@ messages and in GHCi:
where
{- #0 -} (==) (f a) (g b) = (f == g) && (a == b)
{- #1 -} (==) a a = 'True
- -- incompatible indices: 0
+ -- incompatible with: #0
{- #2 -} (==) _1 _2 = 'False
- -- incompatible indices: 1, 0
+ -- incompatible with: #1, #0
The equations are numbered starting from 0, and the comment after each
equation refers to all preceding equations it is incompatible with.