Skip to content

Commit

Permalink
fix: remove case-insensitive matching on native
Browse files Browse the repository at this point in the history
  • Loading branch information
realdavidvega committed May 30, 2024
1 parent 1ad9a66 commit 65758e4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ actual val o200k_base_regex: Regex
get() =
Regex(
listOf(
"""[^\r\n\$alphaChars]?[$upperCaseAndOtherLetters]*[$lowerCaseAndOtherLetters]+(?i:'s|'t|'re|'ve|'m|'ll|'d)?""",
"""[^\r\n\$alphaChars]?[$upperCaseAndOtherLetters]+[$lowerCaseAndOtherLetters]*(?i:'s|'t|'re|'ve|'m|'ll|'d)?""",
"""[^\r\n\$alphaChars]?[$upperCaseAndOtherLetters]*[$lowerCaseAndOtherLetters]+('s|'t|'re|'ve|'m|'ll|'d)?""",
"""[^\r\n\$alphaChars]?[$upperCaseAndOtherLetters]+[$lowerCaseAndOtherLetters]*('s|'t|'re|'ve|'m|'ll|'d)?""",
"""[$decimalNumbers]{1,3}""",
"""?[^\s\$alphaChars]+[\r\n/]*""",
"""\s*[\r\n]+""",
Expand Down

0 comments on commit 65758e4

Please sign in to comment.