We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a130121 commit 88de8a7Copy full SHA for 88de8a7
src/buffer/base.ts
@@ -438,7 +438,7 @@ abstract class SenderBufferBase implements SenderBuffer {
438
439
/**
440
* @ignore
441
- * Writes a 32-bit integer to the buffer in big-endian format.
+ * Writes a 32-bit integer to the buffer in little-endian format.
442
* @param data - Integer value to write
443
*/
444
protected writeInt(data: number) {
@@ -447,7 +447,7 @@ abstract class SenderBufferBase implements SenderBuffer {
447
448
449
450
- * Writes a double-precision float to the buffer in big-endian format.
+ * Writes a double-precision float to the buffer in little-endian format.
451
* @param data - Double value to write
452
453
protected writeDouble(data: number) {
0 commit comments