From 05b8044427ea127ad4d7783162dbb28f81e4c6dd Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Wed, 14 Jul 2010 10:36:49 +0000 Subject: [PATCH] doc: use "finalizer" consistently --- Foreign/ForeignPtr.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 1.7.10.4