mirror of
https://github.com/codedread/bitjs
synced 2025-10-03 09:39:16 +02:00
Correct typo
This commit is contained in:
parent
14f82a83bc
commit
610e6f14da
2 changed files with 3 additions and 2 deletions
|
@ -6,7 +6,8 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
### Added
|
### 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
|
- 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).
|
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.
|
- io: Added a getData() method to ByteBuffer to retrieve a copy of the bytes that have been written.
|
||||||
|
|
|
@ -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.
|
* @param {boolean=} val The value to set. If not present, the stream is set to little-endian.
|
||||||
*/
|
*/
|
||||||
setLittleEndian(val = true) {
|
setLittleEndian(val = true) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue