fixed typo

This commit is contained in:
Nick 2021-05-22 21:37:49 -04:00
parent 58792c0c87
commit f072530b0e

View File

@ -21,5 +21,5 @@ func main(){
scanner.Scan() // use `for scanner.Scan()` to keep reading
line := scanner.Text()
fmt.Println("captured:",line)
timeSleep(durMin)
time.Sleep(durMin)
}