diff --git a/README.md b/README.md index 95a1e79..11e2d2e 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ println(s"Cached data is ${data.latest}") // data has not been updated yet, same result println(s"Cached data is still ${data.latest}") -Thread.sleep(2000) +Thread.sleep(1100) // the `AutoUpdatingVar` fetched new data while this thread was sleeping println(s"New cached data is ${data.latest}")