Trim trailing spaces in generated docs of builtins

This commit is contained in:
Ilya Gorbunov
2022-09-30 14:16:30 +02:00
committed by Space Team
parent 9ac9bef20f
commit 34de2d9155
7 changed files with 126 additions and 126 deletions
+24 -24
View File
@@ -20,7 +20,7 @@ public inline fun Byte.floorDiv(other: Byte): Int =
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -38,7 +38,7 @@ public inline fun Byte.floorDiv(other: Short): Int =
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -56,7 +56,7 @@ public inline fun Byte.floorDiv(other: Int): Int =
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -74,7 +74,7 @@ public inline fun Byte.floorDiv(other: Long): Long =
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -92,7 +92,7 @@ public inline fun Short.floorDiv(other: Byte): Int =
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -110,7 +110,7 @@ public inline fun Short.floorDiv(other: Short): Int =
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -128,7 +128,7 @@ public inline fun Short.floorDiv(other: Int): Int =
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -146,7 +146,7 @@ public inline fun Short.floorDiv(other: Long): Long =
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -164,7 +164,7 @@ public inline fun Int.floorDiv(other: Byte): Int =
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -182,7 +182,7 @@ public inline fun Int.floorDiv(other: Short): Int =
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -203,7 +203,7 @@ public inline fun Int.floorDiv(other: Int): Int {
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -223,7 +223,7 @@ public inline fun Int.floorDiv(other: Long): Long =
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -241,7 +241,7 @@ public inline fun Long.floorDiv(other: Byte): Long =
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -259,7 +259,7 @@ public inline fun Long.floorDiv(other: Short): Long =
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -277,7 +277,7 @@ public inline fun Long.floorDiv(other: Int): Long =
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -298,7 +298,7 @@ public inline fun Long.floorDiv(other: Long): Long {
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -311,9 +311,9 @@ public inline fun Long.mod(other: Long): Long {
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*
*
* If the result cannot be represented exactly, it is rounded to the nearest representable number. In this case the absolute value of the result can be less than or _equal to_ the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -326,9 +326,9 @@ public inline fun Float.mod(other: Float): Float {
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*
*
* If the result cannot be represented exactly, it is rounded to the nearest representable number. In this case the absolute value of the result can be less than or _equal to_ the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -339,9 +339,9 @@ public inline fun Float.mod(other: Double): Double =
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*
*
* If the result cannot be represented exactly, it is rounded to the nearest representable number. In this case the absolute value of the result can be less than or _equal to_ the absolute value of the divisor.
*/
@SinceKotlin("1.5")
@@ -352,9 +352,9 @@ public inline fun Double.mod(other: Float): Double =
/**
* Calculates the remainder of flooring division of this value (dividend) by the other value (divisor).
*
*
* The result is either zero or has the same sign as the _divisor_ and has the absolute value less than the absolute value of the divisor.
*
*
* If the result cannot be represented exactly, it is rounded to the nearest representable number. In this case the absolute value of the result can be less than or _equal to_ the absolute value of the divisor.
*/
@SinceKotlin("1.5")