From 697f93d4935258dff6d5da0119b495b3b944e20b Mon Sep 17 00:00:00 2001
From: Henrik Wallin <hedda@lysator.liu.se>
Date: Tue, 15 Feb 2000 20:19:23 +0100
Subject: [PATCH] Fixed float-args in call_out() and sleep()

Rev: tutorial/tutorial.wmml:1.185
---
 tutorial/tutorial.wmml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tutorial/tutorial.wmml b/tutorial/tutorial.wmml
index 388dc22a2e..5586c5bfd9 100644
--- a/tutorial/tutorial.wmml
+++ b/tutorial/tutorial.wmml
@@ -11529,7 +11529,7 @@ backtrace, Simulate.get_function
 
 <function name=call_out title="make a delayed call to a function">
 <man_syntax>
-mixed call_out(function <I>f</I>, int <I>delay</I>, mixed ... <I>args</I>);
+mixed call_out(function <I>f</I>, float|int <I>delay</I>, mixed ... <I>args</I>);
 </man_syntax>
 <man_description>
 Call_out places a call to the function <i>f</i> with the argument <i>args</i>
@@ -13531,7 +13531,7 @@ size.
 
 <function name=sleep title="let interpreter doze off for a while">
 <man_syntax>
-void sleep(int <I>s</I>);
+void sleep(float|int <I>s</I>, int|void <I>foo</I>);
 </man_syntax>
 <man_description>
 This function makes the program stop for s seconds. Only signal
-- 
GitLab