diff options
| author | Georg Brandl <georg@python.org> | 2013-10-06 10:11:12 +0200 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2013-10-06 10:11:12 +0200 |
| commit | 58d58dad56caa0eb619b96c44d808eedc3a7673f (patch) | |
| tree | 65ecc932fc0a2cd741906601a1fb03a93a178130 | |
| parent | dbab26a8c9e95bef163d06443995aea852d9a99d (diff) | |
| download | cpython-git-58d58dad56caa0eb619b96c44d808eedc3a7673f.tar.gz | |
Fix small copy-paste typo in ossaudiodev setparameters() example (found by Ken Housley on docs@).
| -rw-r--r-- | Doc/library/ossaudiodev.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ossaudiodev.rst b/Doc/library/ossaudiodev.rst index 300270001d..4a0c3a341f 100644 --- a/Doc/library/ossaudiodev.rst +++ b/Doc/library/ossaudiodev.rst @@ -302,7 +302,7 @@ simple calculations. fmt = dsp.setfmt(fmt) channels = dsp.channels(channels) - rate = dsp.rate(channels) + rate = dsp.rate(rate) .. method:: oss_audio_device.bufsize() |
