diff options
author | Ryan Scott <ryan.gl.scott@gmail.com> | 2016-06-24 14:40:42 -0400 |
---|---|---|
committer | Ryan Scott <ryan.gl.scott@gmail.com> | 2016-06-24 14:40:42 -0400 |
commit | 9bc22330dea6a89109b5537ad52ea9669384a49e (patch) | |
tree | 67c966144ba67d943f7963b8969c5dd973f15a1f | |
parent | dadd8b84a6ba157d54d6f84be247f9dbf06e1611 (diff) | |
download | haskell-9bc22330dea6a89109b5537ad52ea9669384a49e.tar.gz |
Fix typo in Data.Bitraverse Haddocks
-rw-r--r-- | libraries/base/Data/Bitraversable.hs | 2 |
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'@ -- |