doc: typos

This commit is contained in:
Lysxia 2019-09-07 20:11:39 -04:00
parent 3fb7ae1565
commit 835c352e46

View File

@ -113,8 +113,7 @@ genericArbitraryRec = genericArbitraryWith sizedOptsDef
-- customGens :: Gen String ':+' Gen Int
-- customGens =
-- (filter (/= '\NUL') '<$>' arbitrary) ':+'
-- (getNonNegative '<$>' arbitrary) ':+'
-- ()
-- (getNonNegative '<$>' arbitrary)
-- @
--
-- === Note on multiple matches
@ -527,6 +526,7 @@ type family Arity f :: Nat where
-- > ---------------------+-----------------------------
-- > (), () | END
-- > (), g :+ gs | g, gs
-- > (), g | g, () when g is not (_ :+ _)
-- > g :+ h, gs | g, h :+ gs
-- > Gen a, gs | END if matching, else (), gs
-- > FieldGen a, gs | idem