From 4e70772b52b21c39488261d66b3feae2b75352dc Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sun, 23 Aug 2015 11:28:01 -0700 Subject: Issue #24878: Fix typos and line wrap --- Lib/aifc.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Lib/aifc.py b/Lib/aifc.py index 1556b53..692d0bf 100644 --- a/Lib/aifc.py +++ b/Lib/aifc.py @@ -258,12 +258,13 @@ _aifc_params = namedtuple('_aifc_params', 'nchannels sampwidth framerate nframes comptype compname') _aifc_params.nchannels.__doc__ = 'Number of audio channels (1 for mono, 2 for stereo)' -_aifc_params.sampwidth.__doc__ = 'Ample width in bytes' +_aifc_params.sampwidth.__doc__ = 'Sample width in bytes' _aifc_params.framerate.__doc__ = 'Sampling frequency' _aifc_params.nframes.__doc__ = 'Number of audio frames' _aifc_params.comptype.__doc__ = 'Compression type ("NONE" for AIFF files)' -_aifc_params.compname.__doc__ = ("""A human-readable version ofcompression type -('not compressed' for AIFF files)'""") +_aifc_params.compname.__doc__ = ("""\ +A human-readable version of the compression type +('not compressed' for AIFF files)""") class Aifc_read: -- cgit v0.12