diff options
Diffstat (limited to 'js/src')
-rw-r--r-- | js/src/Ice/Object.js | 2 | ||||
-rw-r--r-- | js/src/Ice/ProxyFactory.js | 2 | ||||
-rw-r--r-- | js/src/Ice/Stream.js | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/js/src/Ice/Object.js b/js/src/Ice/Object.js index 7b85d030768..d7e27c866f2 100644 --- a/js/src/Ice/Object.js +++ b/js/src/Ice/Object.js @@ -41,7 +41,7 @@ Ice.Object = class } // - // _iceMostDerivedType returns the the most derived Ice generated class. This is + // _iceMostDerivedType returns the most derived Ice generated class. This is // necessary because the user might extend Slice generated classes. The user // class extensions don't have _iceId, _iceIds, etc static members so the implementation // of ice_id and ice_ids would fail trying to access those members of the user diff --git a/js/src/Ice/ProxyFactory.js b/js/src/Ice/ProxyFactory.js index 97c2b66ea27..e04f0ec5a8f 100644 --- a/js/src/Ice/ProxyFactory.js +++ b/js/src/Ice/ProxyFactory.js @@ -195,7 +195,7 @@ class ProxyFactory // in this process that will not change if we try again. // // The most likely cause for a MarshalException is exceeding the - // maximum message size, which is represented by the the subclass + // maximum message size, which is represented by the subclass // MemoryLimitException. For example, a client can attempt to send // a message that exceeds the maximum memory size, or accumulate // enough batch requests without flushing that the maximum size is 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)) |