From: Simon Marlow Date: Wed, 14 Jul 2010 10:36:49 +0000 (+0000) Subject: doc: use "finalizer" consistently X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=05b8044427ea127ad4d7783162dbb28f81e4c6dd;p=ghc-base.git doc: use "finalizer" consistently --- diff --git a/Foreign/ForeignPtr.hs b/Foreign/ForeignPtr.hs index 6a7458a..a824914 100644 --- a/Foreign/ForeignPtr.hs +++ b/Foreign/ForeignPtr.hs @@ -101,7 +101,7 @@ instance Show (ForeignPtr a) where #ifndef __NHC__ newForeignPtr :: FinalizerPtr a -> Ptr a -> IO (ForeignPtr a) -- ^Turns a plain memory reference into a foreign pointer, and --- associates a finaliser with the reference. The finaliser will be +-- associates a finalizer with the reference. The finalizer will be -- executed after the last reference to the foreign object is dropped. -- There is no guarantee of promptness, however the finalizer will be -- executed before the program exits.