1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

all: fix references to time.wait -> time.sleep

This commit is contained in:
Delyan Angelov
2021-02-28 18:01:31 +02:00
parent bdce35fd9c
commit 4125bfe401
5 changed files with 20 additions and 20 deletions

View File

@ -57,7 +57,7 @@ fn main() {
if s == 'STOP' {
break
}
time.wait(delay * time.millisecond)
time.sleep(delay * time.millisecond)
}
pmessage()
pmessage()