Current type for `fromUrl` and `parseHtml` are both: ``` haskell String -> IOSArrow XmlTree (NTree XNode) ``` But it only needs to be ``` haskell String -> IOSArrow b (NTree XNode) ``` This change would make the following code valid: ``` haskell let doc = setDefaultBaseURI url >>> parseHtml html ```