File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ fn main() {
26
26
27
27
** NOTE:** The computed width values may not match the actual rendered column
28
28
width. For example, the woman scientist emoji comprises of a woman emoji, a
29
- zero-width joiner and a microscope emoji.
29
+ zero-width joiner and a microscope emoji. Such [ emoji ZWJ sequences] ( https://www.unicode.org/reports/tr51/#Emoji_ZWJ_Sequences )
30
+ are considered to have the sum of the widths of their constituent parts:
30
31
31
32
``` rust
32
33
extern crate unicode_width;
@@ -39,8 +40,10 @@ fn main() {
39
40
}
40
41
```
41
42
42
- See [ Unicode Standard Annex #11 ] [ UAX11 ] for precise details on what is and isn't
43
- covered by this crate.
43
+ Additionally, [ defective combining character sequences] ( https://unicode.org/glossary/#defective_combining_character_sequence )
44
+ and nonstandard [ Korean jamo] ( https://unicode.org/glossary/#jamo ) sequences may
45
+ be rendered with a different width than what this crate says. (This is not an
46
+ exhaustive list.)
44
47
45
48
## features
46
49
You can’t perform that action at this time.
0 commit comments