File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ The MJ shrink conversion map (*MJ縮退マップ*) was also developed alongside
101101Transliteration based on NTA shrink mappings
102102--------------------------------------------
103103
104- .. py :function :: jnta_shrink_translit(in_, replacement= " \ufffe " , passthrough= False )
104+ .. py :function :: jnta_shrink_translit(in_, replacement= " \ufffd " , passthrough= False )
105105
106106 Transliterate a Unicode string according to the NTA shrink mappings.
107107
Original file line number Diff line number Diff line change @@ -12,6 +12,6 @@ class TransliterationError(Exception): ...
1212def jnta_encode (encoding : str , in_ : str , conv_mode : int ) -> bytes : ...
1313def jnta_decode (encoding : str , in_ : bytes ) -> str : ...
1414def jnta_shrink_translit (
15- in_ : str , replacement : str = "\ufffe " , passthrough : bool = False
15+ in_ : str , replacement : str = "\ufffd " , passthrough : bool = False
1616) -> str : ...
1717def mj_shrink_candidates (in_ : str , combo : int , limit : int = 100 ) -> typing .List [str ]: ...
Original file line number Diff line number Diff line change @@ -763,7 +763,7 @@ cdef JNTAJISShrinkingTransliteratorContext_init(
763763 t.passthrough = passthrough
764764
765765
766- def jnta_shrink_translit (unicode in_ , unicode replacement = u " \ufffe " , bint passthrough = False ):
766+ def jnta_shrink_translit (unicode in_ , unicode replacement = u " \ufffd " , bint passthrough = False ):
767767 """
768768 Transliterate a Unicode string according to the NTA shrink mappings.
769769 """
You can’t perform that action at this time.
0 commit comments