Fix typo in bit set doc (#3712)
This commit is contained in:
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.
|
* 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]
|
* @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) {
|
public class BitSet(size: Int = ELEMENT_SIZE) {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user