Move NEWS entry to the right section.
diff --git a/Misc/NEWS b/Misc/NEWS
index 3850505..3320e3d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,10 @@
 Core and Builtins
 -----------------
 
+- Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_*
+  APIs, to avoid a crash with the pthread implementation in RHEL 5.  Patch
+  by Charles-François Natali.
+
 - Issue #6780: fix starts/endswith error message to mention that tuples are
   accepted too.
 
@@ -61,10 +65,6 @@
 Library
 -------
 
-- Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_*
-  APIs, to avoid a crash with the pthread implementation in RHEL 5.  Patch
-  by Charles-François Natali.
-
 - Issue #11763: don't use difflib in TestCase.assertMultiLineEqual if the
   strings are too long.