]> git.parisson.com Git - timeside.git/commitdiff
typos
authorOlivier Guilyardi <olivier@samalyse.com>
Wed, 17 Feb 2010 22:29:25 +0000 (22:29 +0000)
committerOlivier Guilyardi <olivier@samalyse.com>
Wed, 17 Feb 2010 22:29:25 +0000 (22:29 +0000)
core.py

diff --git a/core.py b/core.py
index 6606e8e2d5832c7a085e3a2b819a56a28797368c..45aae7a6b7464d75e315c30e9e2109ab8b4e8934 100644 (file)
--- 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