8000 appendTo verbage, fixes #37 · protobufjs/bytebuffer.js@d236114 · GitHub
[go: up one dir, main page]

Skip to content

Commit d236114

Browse files
committed
appendTo verbage, fixes #37
1 parent ce4b2bd commit d236114

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

dist/ByteBufferAB.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1920,8 +1920,8 @@
19201920
};
19211921

19221922
/**
1923-
* Appends this ByteBuffer's contents to another ByteBuffer. This will overwrite any contents behind the specified
1924-
* offset up to the length of this ByteBuffer's data.
1923+
* Appends this ByteBuffer's contents to another ByteBuffer. This will overwrite any contents at and after the
1924+
specified offset up to the length of this ByteBuffer's data.
19251925
* @param {!ByteBuffer} target Target ByteBuffer
19261926
* @param {number=} offset Offset to append to. Will use and increase {@link ByteBuffer#offset} by the number of bytes
19271927
* read if omitted.

dist/ByteBufferAB.min.js.gz

0 Bytes
Binary file not shown.

dist/ByteBufferNB.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2071,8 +2071,8 @@ module.exports = (function() {
20712071
};
20722072

20732073
/**
2074-
* Appends this ByteBuffer's contents to another ByteBuffer. This will overwrite any contents behind the specified
2075-
* offset up to the length of this ByteBuffer's data.
2074+
* Appends this ByteBuffer's contents to another ByteBuffer. This will overwrite any contents at and after the
2075+
specified offset up to the length of this ByteBuffer's data.
20762076
* @param {!ByteBuffer} target Target ByteBuffer
20772077
* @param {number=} offset Offset to append to. Will use and increase {@link ByteBuffer#offset} by the number of bytes
20782078
* read if omitted.

src/methods/append.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ ByteBufferPrototype.append = function(source, encoding, offset) {
4141
};
4242

4343
/**
44-
* Appends this ByteBuffer's contents to another ByteBuffer. This will overwrite any contents behind the specified
45-
* offset up to the length of this ByteBuffer's data.
44+
* Appends this ByteBuffer's contents to another ByteBuffer. This will overwrite any contents at and after the
45+
specified offset up to the length of this ByteBuffer's data.
4646
* @param {!ByteBuffer} target Target ByteBuffer
4747
* @param {number=} offset Offset to append to. Will use and increase {@link ByteBuffer#offset} by the number of bytes
4848
* read if omitted.

0 commit comments

Comments
 (0)
0