Skip to content

Commit

Permalink
Correct typo
Browse files Browse the repository at this point in the history
  • Loading branch information
codedread committed May 22, 2024
1 parent 14f82a8 commit 610e6f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ All notable changes to this project will be documented in this file.

### Added

- archive: Support semantic methods for subscribing to unarchive events (onExtract), [Issue #47](https://github.com/codedread/bitjs/issues/47).
- archive: Support semantic methods for subscribing to unarchive events (onExtract),
[Issue #47](https://github.com/codedread/bitjs/issues/47).
- archive: Added Gunzipper to decompress gzip files. Only supported on runtimes that supported
DecompressionStream('gzip') for now. [Issue #48](https://github.com/codedread/bitjs/issues/48).
- io: Added a getData() method to ByteBuffer to retrieve a copy of the bytes that have been written.
Expand Down
2 changes: 1 addition & 1 deletion io/bytestream.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class ByteStream {
}

/**
* Little-Endian means the least significant byte is ifrst. is sometimes called Intel-style.
* Little-Endian means the least significant byte is first. is sometimes called Intel-style.
* @param {boolean=} val The value to set. If not present, the stream is set to little-endian.
*/
setLittleEndian(val = true) {
Expand Down

0 comments on commit 610e6f1

Please sign in to comment.