From: Georg Brandl Date: Sun, 6 Oct 2013 08:11:12 +0000 (+0200) Subject: Fix small copy-paste typo in ossaudiodev setparameters() example (found by Ken Housle... X-Git-Tag: v2.7.6rc1~98 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c5c900defbfa8bc26acdaf97b582c05d08049c20;p=python 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 c5404deb9c..1a65d246a8 100644 --- a/Doc/library/ossaudiodev.rst +++ b/Doc/library/ossaudiodev.rst @@ -296,7 +296,7 @@ simple calculations. fmt = dsp.setfmt(fmt) channels = dsp.channels(channels) - rate = dsp.rate(channels) + rate = dsp.rate(rate) .. method:: oss_audio_device.bufsize()