@@ -60,27 +60,27 @@ #endif OFRunLoop *_Nullable _inRunLoop; } /*! - * The time interval in which the timer will repeat, if it is a repeating - * timer. + * @brief The time interval in which the timer will repeat, if it is a + * repeating timer. */ @property (readonly, nonatomic) of_time_interval_t timeInterval; /*! - * Whether the timer is repeating. + * @brief Whether the timer is repeating. */ @property (readonly, nonatomic, getter=isRepeating) bool repeating; /*! - * Whether the timer is valid. + * @brief Whether the timer is valid. */ @property (readonly, nonatomic, getter=isValid) bool valid; /*! - * The next date at which the timer will fire. + * @brief The next date at which the timer will fire. * * If the timer is already scheduled in a run loop, it will be rescheduled. * Note that rescheduling is an expensive operation, though it still might be * preferable to reschedule instead of invalidating the timer and creating a * new one.