Minor fixes for stdlb kdoc
This commit is contained in:
@@ -17,7 +17,7 @@
|
|||||||
package kotlin
|
package kotlin
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a value of a functional type, such as a lambda, a function expression or a function reference.
|
* Represents a value of a functional type, such as a lambda, an anonymous function or a function reference.
|
||||||
*
|
*
|
||||||
* @param R return type of the function.
|
* @param R return type of the function.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -214,7 +214,7 @@ class GeneratePrimitives(out: PrintWriter) : BuiltInsSourceGenerator(out) {
|
|||||||
since?.let { out.println(" @SinceKotlin(\"$it\")") }
|
since?.let { out.println(" @SinceKotlin(\"$it\")") }
|
||||||
out.println(" public infix fun $name(other: $className): $className")
|
out.println(" public infix fun $name(other: $className): $className")
|
||||||
}
|
}
|
||||||
out.println(" /** Inverts the bits in this value/ */")
|
out.println(" /** Inverts the bits in this value. */")
|
||||||
since?.let { out.println(" @SinceKotlin(\"$it\")") }
|
since?.let { out.println(" @SinceKotlin(\"$it\")") }
|
||||||
out.println(" public fun inv(): $className")
|
out.println(" public fun inv(): $className")
|
||||||
out.println()
|
out.println()
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ package kotlin.text
|
|||||||
*
|
*
|
||||||
* An element of the collection at the particular index can be `null`,
|
* An element of the collection at the particular index can be `null`,
|
||||||
* if the corresponding group in the regular expression is optional and
|
* if the corresponding group in the regular expression is optional and
|
||||||
* there was not match captured by that group.
|
* there was no match captured by that group.
|
||||||
*/
|
*/
|
||||||
public interface MatchGroupCollection : Collection<MatchGroup?> {
|
public interface MatchGroupCollection : Collection<MatchGroup?> {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user