diff --git a/README.md b/README.md index 47db945..3280ab1 100644 --- a/README.md +++ b/README.md @@ -1958,7 +1958,7 @@ from collections import deque Threading --------- -* **CPython interpreter can only run a single thread at the time.** +* **CPython interpreter can only run a single thread at a time.** * **That is why using multiple threads won't result in a faster execution, unless there is an I/O operation in the thread.** ```python from threading import Thread, RLock diff --git a/index.html b/index.html index 70328f7..25b5c35 100644 --- a/index.html +++ b/index.html @@ -1728,7 +1728,7 @@ db = connector.connect(host=<str>, user=<str>, password=<str>, <deque>.rotate(n=1) # Rotates elements to the right.
from threading import Thread, RLock