summaryrefslogtreecommitdiff
path: root/shared-bindings
diff options
context:
space:
mode:
authorScott Shawcroft <scott.shawcroft@gmail.com>2018-04-13 10:51:01 -0700
committerScott Shawcroft <scott.shawcroft@gmail.com>2018-04-13 10:51:01 -0700
commit22194d5977e5fe0ce9254043d6aefd1469982a97 (patch)
treeebbbaa578966b4478ba78cc4be33f63a91171baa /shared-bindings
parent8dcfeb6240cb5a02c8621a25d4a34c45ece3059f (diff)
Tweaks based on dhalbert's feedback.
Diffstat (limited to 'shared-bindings')
-rw-r--r--shared-bindings/audioio/RawSample.c2
-rw-r--r--shared-bindings/audioio/WaveFile.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/shared-bindings/audioio/RawSample.c b/shared-bindings/audioio/RawSample.c
index c4342677a..3f8f71a1f 100644
--- a/shared-bindings/audioio/RawSample.c
+++ b/shared-bindings/audioio/RawSample.c
@@ -44,7 +44,7 @@
//| .. class:: RawSample(buffer, *, channel_count=1, sample_rate=8000)
//|
//| Create a RawSample based on the given buffer of signed values. If channel_count is more than
-//| 1 then each channel's samples should rotate. In other words, for a two channel buffer, the
+//| 1 then each channel's samples should alternate. In other words, for a two channel buffer, the
//| first sample will be for channel 1, the second sample will be for channel two, the third for
//| channel 1 and so on.
//|
diff --git a/shared-bindings/audioio/WaveFile.c b/shared-bindings/audioio/WaveFile.c
index 0a28ad10f..13c4d6b8f 100644
--- a/shared-bindings/audioio/WaveFile.c
+++ b/shared-bindings/audioio/WaveFile.c
@@ -39,7 +39,8 @@
//| :class:`WaveFile` -- Load a wave file for audio playback
//| ========================================================
//|
-//| A .wav file prepped for audio playback
+//| A .wav file prepped for audio playback. Only mono and stereo files are supported. Samples must
+//| be 8 bit unsigned or 16 bit signed.
//|
//| .. class:: WaveFile(filename)
//|