Fix documentation error.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21935 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2005-11-01 15:14:59 +00:00
parent 1278387465
commit 58f48e81e3

View file

@ -525,10 +525,7 @@ gnustep_base_thread_callback(void)
* anArgument. This should have no return value, and must set up an
* autorelease pool if retain/release memory management is used. It should
* free this pool before it finishes execution.</p>
*
* <p><strong>Note</strong>, unlike in Cocoa (and perhaps OpenStep), the
* thread will <em>not</em> exit when the method finishes execution. You must
* call [Thread +exit] yourself (from the thread) to terminate it.</p> */
*/
+ (void) detachNewThreadSelector: (SEL)aSelector
toTarget: (id)aTarget
withObject: (id)anArgument
@ -560,8 +557,10 @@ gnustep_base_thread_callback(void)
/**
* Terminating a thread
* What happens if the thread doesn't call +exit - it doesn't terminate!
* Terminates the current thread.<br />
* Normally you don't need to call this method explicitly,
* since exiting the method with which the thread was detached
* causes this method to be called automatically.
*/
+ (void) exit
{