Minor: fix doc formatting that caused summary differ in JVM and Native

This commit is contained in:
Ilya Gorbunov
2018-10-25 20:28:02 +03:00
parent 18f9b9a022
commit c3237f416f
@@ -50,17 +50,13 @@ public actual enum class RegexOption(override val value: Int, override val mask:
// /** Enables Unicode-aware case folding. */ // /** Enables Unicode-aware case folding. */
// UNICODE_CASE(Pattern.UNICODE_CASE) // UNICODE_CASE(Pattern.UNICODE_CASE)
/** Enables Unix lines mode. /** Enables Unix lines mode. In this mode, only the `'\n'` is recognized as a line terminator. */
* In this mode, only the `'\n'` is recognized as a line terminator.
*/
UNIX_LINES(Pattern.UNIX_LINES), UNIX_LINES(Pattern.UNIX_LINES),
/** Permits whitespace and comments in pattern. */ /** Permits whitespace and comments in pattern. */
COMMENTS(Pattern.COMMENTS), COMMENTS(Pattern.COMMENTS),
/** Enables the mode, when the expression `.` matches any character, /** Enables the mode, when the expression `.` matches any character, including a line terminator. */
* including a line terminator.
*/
DOT_MATCHES_ALL(Pattern.DOTALL), DOT_MATCHES_ALL(Pattern.DOTALL),
/** Enables equivalence by canonical decomposition. */ /** Enables equivalence by canonical decomposition. */