Skip to content

Commit

Permalink
fix haddocks for zip8, zip9
Browse files Browse the repository at this point in the history
*hat tip @ViciousDoormat*
  • Loading branch information
tmcdonell committed Jan 31, 2022
1 parent 2fbefef commit a62670c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Data/Array/Accelerate/Prelude.hs
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ zip7 :: (Shape sh, Elt a, Elt b, Elt c, Elt d, Elt e, Elt f, Elt g)
-> Acc (Array sh (a, b, c, d, e, f, g))
zip7 = zipWith7 T7

-- | Take seven arrays and return an array of seven-tuples, analogous to zip.
-- | Take eight arrays and return an array of eight-tuples, analogous to zip.
--
zip8 :: (Shape sh, Elt a, Elt b, Elt c, Elt d, Elt e, Elt f, Elt g, Elt h)
=> Acc (Array sh a)
Expand All @@ -504,7 +504,7 @@ zip8 :: (Shape sh, Elt a, Elt b, Elt c, Elt d, Elt e, Elt f, Elt g, Elt h)
-> Acc (Array sh (a, b, c, d, e, f, g, h))
zip8 = zipWith8 T8

-- | Take seven arrays and return an array of seven-tuples, analogous to zip.
-- | Take nine arrays and return an array of nine-tuples, analogous to zip.
--
zip9 :: (Shape sh, Elt a, Elt b, Elt c, Elt d, Elt e, Elt f, Elt g, Elt h, Elt i)
=> Acc (Array sh a)
Expand Down

0 comments on commit a62670c

Please sign in to comment.