diff --git a/runtime/src/main/kotlin/kotlin/native/BitSet.kt b/runtime/src/main/kotlin/kotlin/native/BitSet.kt index 7dd03267076..090db434df6 100644 --- a/runtime/src/main/kotlin/kotlin/native/BitSet.kt +++ b/runtime/src/main/kotlin/kotlin/native/BitSet.kt @@ -9,7 +9,7 @@ package kotlin.native * A vector of bits growing if necessary and allowing one to set/clear/read bits from it by a bit index. * * @constructor creates an empty bit set with the specified [size] - * @param seze the size of one element in the array used to store bits. + * @param size the size of one element in the array used to store bits. */ public class BitSet(size: Int = ELEMENT_SIZE) {