From c9d595d890c5a56137b945687d38e4016bb3c6fe Mon Sep 17 00:00:00 2001 From: moi15moi Date: Sun, 8 Oct 2023 17:25:13 -0400 Subject: [PATCH] [font] Correct get_missing_glyphs documentation --- font_collector/font.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/font_collector/font.py b/font_collector/font.py index 568a50d..180926f 100644 --- a/font_collector/font.py +++ b/font_collector/font.py @@ -264,7 +264,7 @@ def get_missing_glyphs( Parameters: text (Sequence[str]): Text support_only_ascii_char_for_symbol_font (bool): - Libass only support ascii character for symbol font, but VSFilter can support more character. + Libass only support ascii character for symbol cmap, but VSFilter can support more character. If you wish to use libass, we recommand you to set this param to True. If you wish to use VSFilter, we recommand you to set this param to False. For more detail, see the issue: https://github.com/libass/libass/issues/319