mikesol / deku-documentation

Documentation for the purescript-deku project
https://deku-documentation.vercel.app
Other
9 stars 5 forks source link

Typo: a should be b #22

Closed srghma closed 1 month ago

srghma commented 5 months ago

Screenshot_20240324-102735_Kiwi Browser

type Poll a = forall b. Event (a -> b) -> Event a
type SampleOnRight a =
  Event a -> (forall b. Event (a -> b) -> Event a)

Should be

type Poll a = forall b. Event (a -> b) -> Event b
type SampleOnRight a =
  Event a -> (forall b. Event (a -> b) -> Event b)
mikesol commented 1 month ago

Thank you! Fixed 👍