Fix incorrect @returns tag usage and improve padStart/End docs

#KT-24371 Fixed
This commit is contained in:
Ilya Gorbunov
2018-05-15 22:16:40 +03:00
parent 15d21a0532
commit e7b445e4b5
2 changed files with 15 additions and 15 deletions
@@ -17,7 +17,7 @@ public fun Node.clear() {
/**
* Creates text node and append it to the element.
*
* @returns this element
* @return this element
*/
fun Element.appendText(text: String): Element {
appendChild(ownerDocument!!.createTextNode(text))