fix example in comment
authorRoss Paterson <ross@soi.city.ac.uk>
Mon, 23 Oct 2006 16:39:25 +0000 (16:39 +0000)
committerRoss Paterson <ross@soi.city.ac.uk>
Mon, 23 Oct 2006 16:39:25 +0000 (16:39 +0000)
Control/Exception.hs

index d789f06..1a40780 100644 (file)
@@ -372,7 +372,7 @@ userErrors _ = Nothing
 -- The arguments to 'bracket' are in this order so that we can partially apply 
 -- it, e.g.:
 --
--- > withFile name = bracket (openFile name) hClose
+-- > withFile name mode = bracket (openFile name mode) hClose
 --
 bracket 
        :: IO a         -- ^ computation to run first (\"acquire resource\")