From: Olivier Guilyardi Date: Wed, 17 Feb 2010 22:29:25 +0000 (+0000) Subject: typos X-Git-Tag: 0.3.2~196 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=2c54b96076cf34cd3026c6fa0bdb83418fb06eda;p=timeside.git typos --- diff --git a/core.py b/core.py index 6606e8e..45aae7a 100644 --- a/core.py +++ b/core.py @@ -93,13 +93,13 @@ class Processor(Component): return ProcessPipe(self, other) class FixedSizeInputAdapter(object): - """Utility to make it easier to write processors which require fixed - size input buffers.""" + """Utility to make it easier to write processors which require fixed-sized + input buffers.""" def __init__(self, buffer_size, channels, pad=False): """Construct a new adapter: buffer_size is the desired buffer size in frames, channels the number of channels, and pad indicates whether the last block should - be padded with zero. """ + be padded with zeros.""" self.buffer = numpy.empty((buffer_size, channels)) self.buffer_size = buffer_size