Effective Haskell: Chapter 8 handleArgs

In the second definition of handleArgs (ePub p 230 and 231) the non-empty case condition is (arg:args) -> Right args but it should be (arg:args) -> Right arg

1 Like