Fix very odd failure in the docspec for Unfoldr under GHC 9.10

This commit is contained in:
Li-yao Xia 2024-04-03 01:04:42 +02:00
parent 67432a608f
commit e93e84ac62

View File

@ -224,7 +224,7 @@ type instance Eval (UnfoldrCase _ 'Nothing) = '[]
-- >>> data ToThree :: Nat -> Exp (Maybe (Nat, Nat))
-- >>> :{
-- type instance Eval (ToThree b) =
-- If (Eval (b Fcf.>= 4))
-- If (4 TL.<=? b)
-- Nothing
-- (Just '(b, b TL.+ 1))
-- :}