servant icon indicating copy to clipboard operation
servant copied to clipboard

Headers data constructors are in the wrong order

Open domenkozar opened this issue 4 years ago • 0 comments

This got me confused:

data Headers ls a = Headers (getResponse :: a) (getHeadersHList :: HList ls)

Expected:

data Headers ls a = Headers (getHeadersHList :: HList ls) (getResponse :: a)

domenkozar avatar Sep 16 '21 11:09 domenkozar