doc: use "finalizer" consistently
authorSimon Marlow <marlowsd@gmail.com>
Wed, 14 Jul 2010 10:36:49 +0000 (10:36 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Wed, 14 Jul 2010 10:36:49 +0000 (10:36 +0000)
Foreign/ForeignPtr.hs

index 6a7458a..a824914 100644 (file)
@@ -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.