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
This commit is contained in:
Adrian Robert 2004-07-29 15:27:02 +00:00
parent 5b3216e811
commit c46e386016

View file

@ -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,