We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8ba662a + 5168103 commit 1dda73aCopy full SHA for 1dda73a
src/Unicode.savi
@@ -12,7 +12,7 @@
12
:: or if it has no corresponding lowercase letter defined in the Unicode spec.
13
:fun codepoint_to_uppercase!(code U32) U32
14
other_code = @_case_info!(code)
15
- error! unless (other_code < 0x8000_0000)
+ error! unless other_code < 0x8000_0000
16
other_code
17
18
// These are functions used in the `_case_info!` method to distinguish
@@ -25,7 +25,7 @@
25
26
:fun _case_info!(code U32) U32
27
// Fast path for ASCII
28
- return @_case_info_00_ascii!(code) if (code < 0x80)
+ return @_case_info_00_ascii!(code) if code < 0x80
29
30
// Note: the following two websites are useful when working on this logic:
31
// Search by pasted character: https://www.compart.com/en/unicode
0 commit comments