Fix doc for system time getters

This commit is contained in:
Pavel Punegov
2019-01-28 14:18:35 +03:00
committed by Pavel Punegov
parent cc26a4c4f3
commit 715e9af5b7
@@ -6,19 +6,22 @@
package kotlin.system
/**
* Gets current system time in milliseconds since epoch
* Gets current system time in milliseconds since certain moment in the past,
* only delta between two subsequent calls makes sense.
*/
@SymbolName("Kotlin_system_getTimeMillis")
public external fun getTimeMillis() : Long
/**
* Gets current system time in nanoseconds since epoch
* Gets current system time in nanoseconds since certain moment in the past,
* only delta between two subsequent calls makes sense.
*/
@SymbolName("Kotlin_system_getTimeNanos")
public external fun getTimeNanos() : Long
/**
* Gets current system time in microseconds since epoch
* Gets current system time in microseconds since certain moment in the past,
* only delta between two subsequent calls makes sense.
*/
@SymbolName("Kotlin_system_getTimeMicros")
public external fun getTimeMicros() : Long