Fix typo in comment
diff --git a/Python/random.c b/Python/random.c
index 50f4ac9..b4bc1f3 100644
--- a/Python/random.c
+++ b/Python/random.c
@@ -93,7 +93,7 @@
     return 0;
 }
 
-/* Issue #25003: Don' use getentropy() on Solaris (available since
+/* Issue #25003: Don't use getentropy() on Solaris (available since
  * Solaris 11.3), it is blocking whereas os.urandom() should not block. */
 #elif defined(HAVE_GETENTROPY) && !defined(sun)
 #define PY_GETENTROPY 1