We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bea510 commit 4e02490Copy full SHA for 4e02490
base/exports.jl
@@ -22,7 +22,6 @@ export
22
Serializer,
23
Docs,
24
Markdown,
25
- Category,
26
Unicode,
27
28
# Types
test/unicode/properties.jl
@@ -143,9 +143,9 @@ end
143
144
# check handling of CN category constants
145
let c_ll = 'β', c_cn = '\u038B'
146
- @test charprop(Category.Code, c_ll) == Category.Ll
+ @test charprop(Unicode.Category.Code, c_ll) == Unicode.Category.Ll
147
# check codepoint with category code CN
148
- @test charprop(Category.Code, c_cn) == Category.Cn
+ @test charprop(Unicode.Category.Code, c_cn) == Unicode.Category.Cn
149
end
150
151
# Make sure fastplus is called for coverage
0 commit comments