Fwd: Tiny little bug in Network.URI

It's just been brought to my attention that there's a small bug in the Network.URI code I wrote many years ago. I'll happily fix this, but I'm not sure what are the current mechanisms for accessing/updating the library repositories these days. Can anyone offer a pointer? (I've checked the error report against RFC 3986, and confirm that the proposed change seems correct. Ideally, there should be a test case for this.) Thanks to Eugen Kuksa for pointing this out. [[ In http://hackage.haskell.org/packages/archive/network/latest/doc/html/src/Netw... at ipvFuture :: URIParser String ipvFuture = do { char 'v' ; h <- hexDigitChar ; char '.' ; a <- many1 (satisfy isIpvFutureChar) ; return $ 'c':h:'.':a } there should be ; return $ 'v':h:'.':a ]] #g --

Hi Graham,
On Tue, Mar 27, 2012 at 12:51 AM, Graham Klyne
It's just been brought to my attention that there's a small bug in the Network.URI code I wrote many years ago. I'll happily fix this, but I'm not sure what are the current mechanisms for accessing/updating the library repositories these days. Can anyone offer a pointer?
The upstream repo is hosted at: https://github.com/haskell/network If you want to make the change yourself against the "stable" branch please clone the repo and either send me a pull request (or an ordinary Unix diff if you prefer.) If you want me to make the change please let me know. -- Johan
participants (2)
-
Graham Klyne
-
Johan Tibell