Hebrew
Hebrew copied to clipboard
Documentation is not properly documenting from_hebrew geresh settings.
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!