diff options
author | Michael Haas <micha2718l@gmail.com> | 2019-11-05 04:32:10 (GMT) |
---|---|---|
committer | Zachary Ware <zach@python.org> | 2019-11-05 04:32:10 (GMT) |
commit | 25fa3ecb98f2c038a422b19c53641fa8e3ef8e52 (patch) | |
tree | de70d4bbbe9f2018e502891cea10c0312e413ad0 /Lib/wave.py | |
parent | 17269090940aa20f6079a6b9f27ae319f8cdae14 (diff) | |
download | cpython-25fa3ecb98f2c038a422b19c53641fa8e3ef8e52.zip cpython-25fa3ecb98f2c038a422b19c53641fa8e3ef8e52.tar.gz cpython-25fa3ecb98f2c038a422b19c53641fa8e3ef8e52.tar.bz2 |
Fix a typo in wave module docstring (GH-17009)
s/pathing/patching/
Diffstat (limited to 'Lib/wave.py')
-rw-r--r-- | Lib/wave.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/wave.py b/Lib/wave.py index 100420d..b707119 100644 --- a/Lib/wave.py +++ b/Lib/wave.py @@ -53,7 +53,7 @@ This returns an instance of a class with the following public methods: -- set all parameters at once tell() -- return current position in output file writeframesraw(data) - -- write audio frames without pathing up the + -- write audio frames without patching up the file header writeframes(data) -- write audio frames and patch up the file header |