From e267a9fdd52078c212a7b9d9b9a95f85c03e501a Mon Sep 17 00:00:00 2001 From: David Daniel Date: Wed, 17 Mar 2004 20:36:14 +0000 Subject: [PATCH] Fix in Makefile.am and to documentation in lam_object.h This commit was SVN r888. --- src/lfc/Makefile.am | 2 +- src/lfc/lam_object.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lfc/Makefile.am b/src/lfc/Makefile.am index 633e3588eb..8224c7153c 100644 --- a/src/lfc/Makefile.am +++ b/src/lfc/Makefile.am @@ -29,7 +29,7 @@ liblfc_la_SOURCES = \ # Conditionally install the header files if WANT_INSTALL_HEADERS -lamdir = $(includedir)/lam/lfc +lamdir = $(includedir)/lfc lam_HEADERS = $(headers) else lamdir = $(includedir) diff --git a/src/lfc/lam_object.h b/src/lfc/lam_object.h index b993dc8807..b830b0a556 100644 --- a/src/lfc/lam_object.h +++ b/src/lfc/lam_object.h @@ -73,8 +73,8 @@ * OBJ_RELEASE(sally); * OBJ_RELEASE(sally); * @endcode - * When the reference count reaches zero, the class's "fini" method - * is run and the memory is freed. + * When the reference count reaches zero, the class's destructor, and + * those of its parents, are run and the memory is freed. * * N.B. There is no explicit free/delete method for dynamic objects in * this model.