summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/BUILDING.md2
-rw-r--r--js/src/Ice/Object.js2
-rw-r--r--js/src/Ice/ProxyFactory.js2
-rw-r--r--js/src/Ice/Stream.js4
4 files changed, 5 insertions, 5 deletions
diff --git a/js/BUILDING.md b/js/BUILDING.md
index 474c7f0322d..93e6a08a4d2 100644
--- a/js/BUILDING.md
+++ b/js/BUILDING.md
@@ -67,7 +67,7 @@ For older browsers that do not support all of the required ECMAScript 6
features used by Ice for JavaScript, we provide pre-compiled versions of
the libraries using the [Babel] JavaScript compiler. These libraries
depend on the [core-js] and [regenerator-runtime] packages
-and are available in the `lib/es5` subdirectory with the same names as
+and are available in the `lib/es5` subdirectory with the same names as
the main libraries.
## Running the JavaScript Tests
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))