From 6c2f655aeda202cd112d151555f09b8e648ef23f Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Tue, 17 Jan 2017 10:23:52 -0800 Subject: [PATCH] Removed extra comma in setImmediate's description Fixes #94. --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 516ff0a9..2d703927 100644 --- a/Readme.md +++ b/Readme.md @@ -147,7 +147,7 @@ Clears the timer given the ID or timer object, as long as it was created using ### `var id = clock.setImmediate(callback)` -Schedules the callback, to be fired once `0` milliseconds have ticked by. Note +Schedules the callback to be fired once `0` milliseconds have ticked by. Note that you'll still have to call `clock.tick()` for the callback to fire. If called during a tick the callback won't fire until `1` millisecond has ticked by.