avi-perl/Hebrew

Documentation is not properly documenting from_hebrew geresh settings.

SZRabinowitz opened this issue · 0 comments

in there documentation it doesn't properly show how to remove geresh punctuation.

I quote:

# Do not add punctuation
hs2 = Hebrew.from_number(2, geresh=False)
print(hs2)  # ב

It should say:

# Do not add punctuation
hs2 = Hebrew.from_number(2, geresh=False, punctuate=False)
print(hs2)  # ב

Thanks!