summaryrefslogtreecommitdiff
path: root/libraries
diff options
context:
space:
mode:
authorRyan Scott <ryan.gl.scott@gmail.com>2016-06-24 14:40:42 -0400
committerRyan Scott <ryan.gl.scott@gmail.com>2016-06-24 14:40:42 -0400
commit9bc22330dea6a89109b5537ad52ea9669384a49e (patch)
tree67c966144ba67d943f7963b8969c5dd973f15a1f /libraries
parentdadd8b84a6ba157d54d6f84be247f9dbf06e1611 (diff)
downloadhaskell-9bc22330dea6a89109b5537ad52ea9669384a49e.tar.gz
Fix typo in Data.Bitraverse Haddocks
Diffstat (limited to 'libraries')
-rw-r--r--libraries/base/Data/Bitraversable.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/Data/Bitraversable.hs b/libraries/base/Data/Bitraversable.hs
index 7e64bb55a1..42e96356f2 100644
--- a/libraries/base/Data/Bitraversable.hs
+++ b/libraries/base/Data/Bitraversable.hs
@@ -130,7 +130,7 @@ bimapM = bitraverse
-- | Sequences all the actions in a structure, building a new structure with
-- the same shape using the results of the actions. For a version that ignores
--- the results, see 'sequence_'.
+-- the results, see 'bisequence_'.
--
-- @'bisequence' ≡ 'bitraverse' 'id' 'id'@
--