]> granicus.if.org Git - python/commitdiff
Small cosmetic fixes
authorEli Bendersky <eliben@gmail.com>
Thu, 14 Mar 2013 21:39:51 +0000 (14:39 -0700)
committerEli Bendersky <eliben@gmail.com>
Thu, 14 Mar 2013 21:39:51 +0000 (14:39 -0700)
Doc/library/filecmp.rst

index e5ffefbabe6d47864c5decee457b76e0523d26ef..95c4ddf267141c9eb466e251af576e6b92d426a0 100644 (file)
@@ -56,8 +56,8 @@ The :class:`dircmp` class
 .. class:: dircmp(a, b, ignore=None, hide=None)
 
    Construct a new directory comparison object, to compare the directories *a*
-   and *b*. *ignore* is a list of names to ignore, and defaults to
-   :attr:`filecmp.DEFAULT_IGNORES`. *hide* is a list of names to hide, and
+   and *b*.  *ignore* is a list of names to ignore, and defaults to
+   :attr:`filecmp.DEFAULT_IGNORES`.  *hide* is a list of names to hide, and
    defaults to ``[os.curdir, os.pardir]``.
 
    The :class:`dircmp` class compares files by doing *shallow* comparisons
@@ -65,18 +65,15 @@ The :class:`dircmp` class
 
    The :class:`dircmp` class provides the following methods:
 
-
    .. method:: report()
 
       Print (to :data:`sys.stdout`) a comparison between *a* and *b*.
 
-
    .. method:: report_partial_closure()
 
       Print a comparison between *a* and *b* and common immediate
       subdirectories.
 
-
    .. method:: report_full_closure()
 
       Print a comparison between *a* and *b* and common subdirectories
@@ -133,7 +130,7 @@ The :class:`dircmp` class
 
    .. attribute:: common_files
 
-      Files in both *a* and *b*
+      Files in both *a* and *b*.
 
 
    .. attribute:: common_funny