summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2012-03-26 16:09:58 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2012-03-26 16:09:58 (GMT)
commit8ece80faae3bec86628aa4176a751265ecb2f2a4 (patch)
treec62189db428cb9e2a914ad6ed715bb0cfc9088ac /Doc/library
parent0f6ce8d9dfaaeca036a085ef8de252efa8a2beea (diff)
downloadcpython-8ece80faae3bec86628aa4176a751265ecb2f2a4.zip
cpython-8ece80faae3bec86628aa4176a751265ecb2f2a4.tar.gz
cpython-8ece80faae3bec86628aa4176a751265ecb2f2a4.tar.bz2
Minor documentation tweak.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/logging.handlers.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst
index c4dd438..ef65cfa 100644
--- a/Doc/library/logging.handlers.rst
+++ b/Doc/library/logging.handlers.rst
@@ -654,7 +654,7 @@ event of a certain severity or greater is seen.
:class:`BufferingHandler`, which is an abstract class. This buffers logging
records in memory. Whenever each record is added to the buffer, a check is made
by calling :meth:`shouldFlush` to see if the buffer should be flushed. If it
-should, then :meth:`flush` is expected to do the needful.
+should, then :meth:`flush` is expected to do the flushing.
.. class:: BufferingHandler(capacity)