From 4766ec55fe9a6bd1a74648d4881460a4cce0fc8a Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 28 Jan 2020 23:23:51 -0500 Subject: [PATCH] Documents units. --- .../Clock Signal/High Precision Timer/CSHighPrecisionTimer.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/OSBindings/Mac/Clock Signal/High Precision Timer/CSHighPrecisionTimer.h b/OSBindings/Mac/Clock Signal/High Precision Timer/CSHighPrecisionTimer.h index 9ceeded01..5942fa4f1 100644 --- a/OSBindings/Mac/Clock Signal/High Precision Timer/CSHighPrecisionTimer.h +++ b/OSBindings/Mac/Clock Signal/High Precision Timer/CSHighPrecisionTimer.h @@ -19,6 +19,9 @@ /// Initialises a new instance of the high precision timer; the timer will begin /// ticking immediately. +/// +/// @param task The block to perform each time the timer fires. +/// @param interval The interval at which to fire the timer, in nanoseconds. - (instancetype)initWithTask:(dispatch_block_t)task interval:(uint64_t)interval; /// Stops the timer.