Fix Issue #6005: Examples in the socket library documentation use sendall,
where relevant, instead send method.
diff --git a/Misc/NEWS b/Misc/NEWS
index 4a38b14..242c08c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -113,6 +113,9 @@
 Library
 -------
 
+- Issue #6005: Examples in the socket library documentation use sendall, where
+  relevant, instead send method.
+
 - Issue #10811: Fix recursive usage of cursors. Instead of crashing,
   raise a ProgrammingError now.