diff --git a/README.md b/README.md index d75c28f..c656995 100644 --- a/README.md +++ b/README.md @@ -2015,7 +2015,7 @@ thread.start() thread.join() # Waits for thread to finish. ``` * **Use `'kwargs='` to pass keyword arguments to the function.** -* **Use `'daemon=True'` or the program will not be able to exit while the thread is alive.** +* **Use `'daemon=True'`, or the program will not be able to exit while the thread is alive.** ### Lock ```python diff --git a/index.html b/index.html index 25a4ab1..35b8639 100644 --- a/index.html +++ b/index.html @@ -1777,7 +1777,7 @@ thread.join() # Waits for thre

Lock

lock = RLock()
 lock.acquire()                       # Waits for lock to be available.