#5636: fix next -> __next__ in csv reader docs.
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst
index 80ddaad..46ef246 100644
--- a/Doc/library/csv.rst
+++ b/Doc/library/csv.rst
@@ -351,15 +351,14 @@
 Reader objects (:class:`DictReader` instances and objects returned by the
 :func:`reader` function) have the following public methods:
 
-
-.. method:: csvreader.next()
+.. method:: csvreader.__next__()
 
    Return the next row of the reader's iterable object as a list, parsed according
-   to the current dialect.
+   to the current dialect.  Usually you should call this as ``next(reader)``.
+
 
 Reader objects have the following public attributes:
 
-
 .. attribute:: csvreader.dialect
 
    A read-only description of the dialect in use by the parser.
@@ -371,10 +370,8 @@
    number of records returned, as records can span multiple lines.
 
 
-
 DictReader objects have the following public attribute:
 
-
 .. attribute:: csvreader.fieldnames
 
    If not passed as a parameter when creating the object, this attribute is