Skip to content

Commit

Permalink
Slight rewording for greater clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrait committed Dec 30, 2022
1 parent b1a1750 commit a4ed9e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
large, rather than `"Not a supported wave file. The format chunk extension is
shorter than expected."`. As an example of what "too large" means, if a
`"fmt "` chunk has a size of 40 bytes, then any chunk extension larger than
22 bytes will be too large and overflow out of the chunk, since all `"fmt "`
chunk extensions start at byte 18 (0-based).
22 bytes will be too large and overflow out of the chunk, since a chunk
extension's content always starts at byte 18 (0-based).


1.1.1
Expand Down
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ The full details:

* **Bug Fix:** More accurate message on the `InvalidFormatError` raised when reading a file whose `"fmt "` chunk extension is too large to fit in the chunk.

The message will now correctly state that the chunk extension is too large, rather than `"Not a supported wave file. The format chunk extension is shorter than expected."`. As an example of what "too large" means, if a `"fmt "` chunk has a size of 40 bytes, then any chunk extension larger than 22 bytes will be too large and overflow out of the chunk, since all `"fmt "` chunk extensions start at byte 18 (0-based).
The message will now correctly state that the chunk extension is too large, rather than `"Not a supported wave file. The format chunk extension is shorter than expected."`. As an example of what "too large" means, if a `"fmt "` chunk has a size of 40 bytes, then any chunk extension larger than 22 bytes will be too large and overflow out of the chunk, since a chunk extension's content always starts at byte 18 (0-based).

# Previous Release: v1.1.1

Expand Down

0 comments on commit a4ed9e3

Please sign in to comment.