tests passing

This commit is contained in:
Samuel Ireson 2025-03-31 15:45:34 +01:00
parent 29e1d7fd5d
commit 01d45e981b

View File

@ -497,7 +497,6 @@ impl NumberingKind {
],
n,
),
Self::Symbol => symbolic(['*', '†', '‡', '§', '¶', '‖'], n),
Self::Hebrew => additive(
[
("י׳", 10000),
@ -655,6 +654,7 @@ impl NumberingKind {
Self::BengaliNumber => {
numeric(['', '১', '২', '৩', '', '৫', '৬', '', '৮', '৯'], n)
}
Self::Symbol => symbolic(['*', '†', '‡', '§', '¶', '‖'], n),
}
}
}