From 1f4a3b276bcd0c28950d301b582152ea806d37fb Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Mon, 13 Nov 2017 18:42:14 -0500 Subject: [PATCH] Doc updates for thread-sleep! --- docs/api/srfi/18.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/srfi/18.md b/docs/api/srfi/18.md index 0cdb07df..bce4a03a 100644 --- a/docs/api/srfi/18.md +++ b/docs/api/srfi/18.md @@ -79,11 +79,11 @@ Makes thread runnable. The thread must be a new thread. thread-start! returns th (thread-sleep! timeout) -Block the current thread for `timeout` milliseconds. +Block the current thread for `timeout` seconds. Specify fractional seconds for high-resolution timing. # thread-yield! - (thread-yield!) (thread-sleep! 1)) + (thread-yield!) The current thread exits the running state as if its quantum had expired.