From a931b5453af067f0d094af29aa7eb9a66a892536 Mon Sep 17 00:00:00 2001 From: Lidonis Calhau Date: Mon, 23 Dec 2019 13:51:25 +0100 Subject: [PATCH] Fix typo in bit set doc (#3712) --- runtime/src/main/kotlin/kotlin/native/BitSet.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {