From c3237f416fbeb46a219f36d604bf992ef09a8c45 Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Thu, 25 Oct 2018 20:28:02 +0300 Subject: [PATCH] Minor: fix doc formatting that caused summary differ in JVM and Native --- libraries/stdlib/jvm/src/kotlin/text/regex/Regex.kt | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/libraries/stdlib/jvm/src/kotlin/text/regex/Regex.kt b/libraries/stdlib/jvm/src/kotlin/text/regex/Regex.kt index d6c9dd793da..7e17864a886 100644 --- a/libraries/stdlib/jvm/src/kotlin/text/regex/Regex.kt +++ b/libraries/stdlib/jvm/src/kotlin/text/regex/Regex.kt @@ -50,17 +50,13 @@ public actual enum class RegexOption(override val value: Int, override val mask: // /** Enables Unicode-aware case folding. */ // UNICODE_CASE(Pattern.UNICODE_CASE) - /** Enables Unix lines mode. - * In this mode, only the `'\n'` is recognized as a line terminator. - */ + /** Enables Unix lines mode. In this mode, only the `'\n'` is recognized as a line terminator. */ UNIX_LINES(Pattern.UNIX_LINES), /** Permits whitespace and comments in pattern. */ COMMENTS(Pattern.COMMENTS), - /** Enables the mode, when the expression `.` matches any character, - * including a line terminator. - */ + /** Enables the mode, when the expression `.` matches any character, including a line terminator. */ DOT_MATCHES_ALL(Pattern.DOTALL), /** Enables equivalence by canonical decomposition. */