diff options
author | Austin Henriksen <austin@zeroc.com> | 2023-12-06 11:35:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-06 11:35:59 -0500 |
commit | e14afea88e4b3b65d29a64faa0f088cb986a9258 (patch) | |
tree | a3f6e11fab21a5105f40682d8fedeff25500a1a2 /js/src/Ice/Stream.js | |
parent | Fixed typo in _makeLambdaOutgoing name (diff) | |
download | ice-e14afea88e4b3b65d29a64faa0f088cb986a9258.tar.bz2 ice-e14afea88e4b3b65d29a64faa0f088cb986a9258.tar.xz ice-e14afea88e4b3b65d29a64faa0f088cb986a9258.zip |
Fixed typos. (#1580)
Diffstat (limited to 'js/src/Ice/Stream.js')
-rw-r--r-- | js/src/Ice/Stream.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/Ice/Stream.js b/js/src/Ice/Stream.js index 39786aabc74..a17bdadcc5a 100644 --- a/js/src/Ice/Stream.js +++ b/js/src/Ice/Stream.js @@ -1576,12 +1576,12 @@ class InputStream // top-level sequence or enclosed sequence it doesn't really matter). // // Otherwise, we are reading an enclosed sequence and we have to bump - // _minSeqSize by the minimum size that this sequence will require on + // _minSeqSize by the minimum size that this sequence will require on // the stream. // // The goal of this check is to ensure that when we start unmarshaling // a new sequence, we check the minimal size of this new sequence against - // the estimated remaining buffer size. This estimatation is based on + // the estimated remaining buffer size. This estimation is based on // the minimum size of the enclosing sequences, it's _minSeqSize. // if(this._startSeq === -1 || this._buf.position > (this._startSeq + this._minSeqSize)) |