commit | c5c900defbfa8bc26acdaf97b582c05d08049c20 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun Oct 06 10:11:12 2013 +0200 |
committer | Georg Brandl <georg@python.org> | Sun Oct 06 10:11:12 2013 +0200 |
tree | 9b818247146d22989dd728147dd92954a806e851 | |
parent | c3eb868cc44e8b92d60c826ea64d4315dad6461b [diff] |
Fix small copy-paste typo in ossaudiodev setparameters() example (found by Ken Housley on docs@).
diff --git a/Doc/library/ossaudiodev.rst b/Doc/library/ossaudiodev.rst index c5404de..1a65d24 100644 --- a/Doc/library/ossaudiodev.rst +++ b/Doc/library/ossaudiodev.rst
@@ -296,7 +296,7 @@ fmt = dsp.setfmt(fmt) channels = dsp.channels(channels) - rate = dsp.rate(channels) + rate = dsp.rate(rate) .. method:: oss_audio_device.bufsize()