Update MathH.kt
Fix formatting issues in documentation of atan2() function.
diff --git a/libraries/stdlib/common/src/kotlin/MathH.kt b/libraries/stdlib/common/src/kotlin/MathH.kt
index 822e303..0dbf4f8 100644
--- a/libraries/stdlib/common/src/kotlin/MathH.kt
+++ b/libraries/stdlib/common/src/kotlin/MathH.kt
@@ -84,11 +84,11 @@
* Special cases:
* - `atan2(0.0, 0.0)` is `0.0`
* - `atan2(0.0, x)` is `0.0` for `x > 0` and `PI` for `x < 0`
- * - `atan2(-0.0, x)` is `-0.0` for 'x > 0` and `-PI` for `x < 0`
- * - `atan2(y, +Inf)` is `0.0` for `0 < y < +Inf` and `-0.0` for '-Inf < y < 0`
+ * - `atan2(-0.0, x)` is `-0.0` for `x > 0` and `-PI` for `x < 0`
+ * - `atan2(y, +Inf)` is `0.0` for `0 < y < +Inf` and `-0.0` for `-Inf < y < 0`
* - `atan2(y, -Inf)` is `PI` for `0 < y < +Inf` and `-PI` for `-Inf < y < 0`
* - `atan2(y, 0.0)` is `PI/2` for `y > 0` and `-PI/2` for `y < 0`
- * - `atan2(+Inf, x)` is `PI/2` for finite `x`y
+ * - `atan2(+Inf, x)` is `PI/2` for finite `x`
* - `atan2(-Inf, x)` is `-PI/2` for finite `x`
* - `atan2(NaN, x)` and `atan2(y, NaN)` is `NaN`
*/