s-gilles opened this issue 8 years ago · 1 comments
I believe the len = len + 1 in the example display_width should be len = len + l (at least, it makes alignright("コンニチハ", 80) work as expected for me). Is this a typo, or do I misunderstand?
len = len + 1
display_width
len = len + l
alignright("コンニチハ", 80)
@s-gilles: You were right, that was a mistake and using l is the correct thing. I have fixed the README. Thanks!
l
README