Fix a typo in a comment
diff --git a/Lib/threading.py b/Lib/threading.py
index 8d27faf..ded573a 100644
--- a/Lib/threading.py
+++ b/Lib/threading.py
@@ -237,7 +237,7 @@
 
 class _Semaphore(_Verbose):
 
-    # After Tim Peters' semaphore class, but bnot quite the same (no maximum)
+    # After Tim Peters' semaphore class, but not quite the same (no maximum)
 
     def __init__(self, value=1, verbose=None):
         assert value >= 0, "Semaphore initial value must be >= 0"