Fix the comments describing the return values of the head(), body(),
article() commands.
diff --git a/Lib/nntplib.py b/Lib/nntplib.py
index 0ee3ab0..865041f 100644
--- a/Lib/nntplib.py
+++ b/Lib/nntplib.py
@@ -277,6 +277,8 @@
 	# - id: article number or message id
 	# Returns:
 	# - resp: server response if succesful
+	# - nr: article number
+	# - id: message id
 	# - list: the lines of the article's header
 
 	def head(self, id):
@@ -286,6 +288,8 @@
 	# - id: article number or message id
 	# Returns:
 	# - resp: server response if succesful
+	# - nr: article number
+	# - id: message id
 	# - list: the lines of the article's body
 
 	def body(self, id):
@@ -295,6 +299,8 @@
 	# - id: article number or message id
 	# Returns:
 	# - resp: server response if succesful
+	# - nr: article number
+	# - id: message id
 	# - list: the lines of the article
 
 	def article(self, id):