Skip to content

Commit

Permalink
Better word choice
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrait committed Jan 29, 2017
1 parent fa42b0b commit 5babea8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
* Writing files using WAVEFORMATEXTENSIBLE format is not supported - all
files will be written as a "vanilla" file regardless of the number of
channels or sample format.
* `Reader` and `Writer` can now be constructed with an open `IO` instance, to
allow reading/writing using an arbitrary `IO`-like object (`File`, `StringIO`,
etc). Previously, they could only be constructed from a file name (given by a
String). Thanks to [@taf2](https://github.com/taf2) for suggesting this feature
and providing an example pull request.
* `Reader` and `Writer` can now be constructed using with an open `IO` instance,
to allow reading/writing using an arbitrary `IO`-like object (`File`,
`StringIO`, etc). Previously, they could only be constructed from a file name
(given by a String). Thanks to [@taf2](https://github.com/taf2) for suggesting
this feature and providing an example pull request.
* The buffer size in `Reader.each_buffer()` is now optional. If not given, a
default buffer size will be used.
* Two `Duration` objects will now evaluate to equal if they represent the same
Expand Down
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Released on January 29, 2017, this version includes these changes:
* The channel speaker mapping field is not exposed.
* The number of valid bits per sample must match the sample container size. For example, if a file has a sample container size of 24 bits and each sample is 24 bits, then it can be read. If the container size is 32 bits and each sample is 24 bits, it _can't_ be read.
* Writing files using WAVEFORMATEXTENSIBLE format is not supported - all files will be written as a "vanilla" file regardless of the number of channels or sample format.
* `Reader` and `Writer` can now be constructed with an open `IO` instance, to allow reading/writing using an arbitrary `IO`-like object (`File`, `StringIO`, etc). Previously, they could only be constructed from a file name (given by a String). Thanks to [@taf2](https://github.com/taf2) for suggesting this feature and providing an example pull request.
* `Reader` and `Writer` can now be constructed using an open `IO` instance, to allow reading/writing using an arbitrary `IO`-like object (`File`, `StringIO`, etc). Previously, they could only be constructed from a file name (given by a String). Thanks to [@taf2](https://github.com/taf2) for suggesting this feature and providing an example pull request.
* The buffer size in `Reader.each_buffer()` is now optional. If not given, a default buffer size will be used.
* Two `Duration` objects will now evaluate to equal if they represent the same amount of time, due to an overridden definition of `==`. Thanks to [Christopher Smith](https://github.com/chrylis) for suggesting this improvement.
* A `ReaderClosedError` is now raised (instead of `IOError`) when attempting to read from a closed `Reader` instance. However, `ReaderClosedError` extends `IOError`.
Expand Down

0 comments on commit 5babea8

Please sign in to comment.