Skip to content
Snippets Groups Projects
Commit 010fb784 authored by Owen Shepherd's avatar Owen Shepherd :guitar: Committed by Marge Bot
Browse files

docs(NonEmpty/group): Remove incorrect haddock link quotes in code block

parent bd8acc0c
No related branches found
No related tags found
No related merge requests found
...@@ -400,7 +400,7 @@ partition p = List.partition p . toList ...@@ -400,7 +400,7 @@ partition p = List.partition p . toList
-- argument. Moreover, each stream in the resulting list -- argument. Moreover, each stream in the resulting list
-- contains only equal elements. For example, in list notation: -- contains only equal elements. For example, in list notation:
-- --
-- > 'group' $ 'cycle' "Mississippi" -- > group $ cycle "Mississippi"
-- > = "M" : "i" : "ss" : "i" : "ss" : "i" : "pp" : "i" : "M" : "i" : ... -- > = "M" : "i" : "ss" : "i" : "ss" : "i" : "pp" : "i" : "M" : "i" : ...
group :: (Foldable f, Eq a) => f a -> [NonEmpty a] group :: (Foldable f, Eq a) => f a -> [NonEmpty a]
group = groupBy (==) group = groupBy (==)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment