From 1c76ff464e7718932ecbb6e927e26792b020d969 Mon Sep 17 00:00:00 2001 From: arobert Date: Thu, 29 Jul 2004 15:27:02 +0000 Subject: [PATCH] NSZone is a struct not a class git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19795 72102866-910b-0410-8b05-ffd578937521 --- Documentation/manual/WorkingWithObjects.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/manual/WorkingWithObjects.texi b/Documentation/manual/WorkingWithObjects.texi index c232d323e..26a260822 100644 --- a/Documentation/manual/WorkingWithObjects.texi +++ b/Documentation/manual/WorkingWithObjects.texi @@ -106,7 +106,7 @@ in multiples of this size. The GNUstep/Objective-C mechanisms supporting memory allocation are therefore described here. The fundamental structure describing a region of memory in GNUstep is called a -@i{Zone}, and it is represented by the class @code{NSZone}. All +@i{Zone}, and it is represented by the @code{NSZone} struct. All @code{NSObject} methods dealing with the allocation of memory optionally take an @code{NSZone} argument specifying the Zone to get the memory from. For example, in addition to the fundamental @code{alloc} method described above,