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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c5c900defbfa8bc26acdaf97b582c05d08049c20;p=thirdparty%2FPython%2Fcpython.git 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 c5404deb9c79..1a65d246a8c1 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()