summaryrefslogtreecommitdiff
path: root/swift/src/Ice/InputStream.swift
diff options
context:
space:
mode:
Diffstat (limited to 'swift/src/Ice/InputStream.swift')
-rw-r--r--swift/src/Ice/InputStream.swift4
1 files changed, 2 insertions, 2 deletions
diff --git a/swift/src/Ice/InputStream.swift b/swift/src/Ice/InputStream.swift
index 57d354869a6..1f27e1a3dab 100644
--- a/swift/src/Ice/InputStream.swift
+++ b/swift/src/Ice/InputStream.swift
@@ -591,12 +591,12 @@ public extension 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 un-marshalling
// 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 startSeq == -1 || pos > (startSeq + minSeqSize) {