From c8899a15fb8547492f4df90d9640711abce29ed0 Mon Sep 17 00:00:00 2001 From: kikito Date: Wed, 25 Sep 2013 20:20:22 +0200 Subject: [PATCH] updated README --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index a136423..0850ca5 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,7 @@ Increases the internal timer in the clock by `dt`. * On one-time clocks, if the internal timer surpasses the clock's `time`, then the clock's `callback` is invoked. * On periodic clocks, the `callback` is executed 0 or more times, depending on how big `dt` is and the clock's internal timer. - -`expired` will be true for one-time clocks whose time has passed, so their function has been invoked. +* `expired` will be true for one-time clocks whose time has passed, so their function has been invoked. `clock:reset([running])` Changes the internal timer manually to `running`, or to 0 if nothing is specified. It never invokes `callback`.