Fix typo in bit set doc (#3712)

This commit is contained in:
Lidonis Calhau
2019-12-23 13:51:25 +01:00
committed by Nikolay Igotti
parent 58aad06f14
commit a931b5453a
@@ -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) {