Unify print/println/readLine docs

This commit is contained in:
Ilya Gorbunov
2018-10-18 22:24:39 +03:00
parent 406bd7c980
commit ebe9d59df7
3 changed files with 27 additions and 27 deletions
+3 -3
View File
@@ -6,13 +6,13 @@
package kotlin.io
/** Prints a newline to the standard output stream. */
/** Prints the line separator to the standard output stream. */
public expect fun println()
/** Prints the given message and newline to the standard output stream. */
/** Prints the given [message] and the line separator to the standard output stream. */
public expect fun println(message: Any?)
/** Prints the given message to the standard output stream. */
/** Prints the given [message] to the standard output stream. */
public expect fun print(message: Any?)