@@ -36,14 +36,14 @@ * @brief A class which provides portable threads. * * To use it, you should create a new class derived from it and reimplement * main. * - * @warning Even though the OFCopying protocol is implemented, it does - * not return an independent copy of the thread, but instead - * retains it. This is so that the thread can be used as a key for a - * dictionary, so context can be associated with a thread. + * @warning Even though the OFCopying protocol is implemented, it does *not* + * return an independent copy of the thread, but instead retains it. + * This is so that the thread can be used as a key for a dictionary, + * so context can be associated with a thread. */ @interface OFThread: OFObject { #ifdef OF_THREAD_M @public @@ -102,12 +102,12 @@ forTLSKey: (OFTLSKey*)key; /*! * @brief Returns the object for the specified Thread Local Storage key. * - * The returned object is not retained and autoreleased for performance - * reasons! + * @warning The returned object is *not* retained and autoreleased for + * performance reasons! * * @param key The Thread Local Storage key */ + (id)objectForTLSKey: (OFTLSKey*)key;