@@ -84,11 +84,11 @@ OFMutableDictionary *threadDictionary; @property (class, nullable, copy, nonatomic) OFString *name; # endif /*! - * The name for the thread to use when starting it. + * @brief The name for the thread to use when starting it. * * @note While this can be changed after the thread has been started, it will * have no effect once the thread started. If you want to change the name * of the current thread after it has been started, look at the class * method @ref setName:. @@ -95,23 +95,23 @@ */ @property OF_NULLABLE_PROPERTY (copy) OFString *name; # ifdef OF_HAVE_BLOCKS /*! - * The block to execute in the thread. + * @brief The block to execute in the thread. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) of_thread_block_t threadBlock; # endif /*! - * The run loop for the thread. + * @brief The run loop for the thread. */ @property (readonly, nonatomic) OFRunLoop *runLoop; /*! - * The priority of the thread. + * @brief The priority of the thread. * * @note This has to be set before the thread is started! * * This is a value between -1.0 (meaning lowest priority that still schedules) * and +1.0 (meaning highest priority that still allows getting preempted) @@ -118,11 +118,11 @@ * with normal priority being 0.0 (meaning being the same as the main thread). */ @property (nonatomic) float priority; /*! - * The stack size of the thread. + * @brief The stack size of the thread. * * @note This has to be set before the thread is started! */ @property (nonatomic) size_t stackSize;