Issue 6722: Improve the namedtuple examples.
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index e34e394..3f81c00 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -586,11 +586,15 @@
    .. versionchanged:: 3.1
       Added support for *rename*.
 
-Example:
 
 .. doctest::
    :options: +NORMALIZE_WHITESPACE
 
+   >>> # Basic example
+   >>> Point = namedtuple('Point', 'x y')
+   >>> p = Point(x=10, y=11)
+
+   >>> # Example using the verbose option to print the class definition
    >>> Point = namedtuple('Point', 'x y', verbose=True)
    class Point(tuple):
            'Point(x, y)'