aboutsummaryrefslogtreecommitdiff
path: root/ops.go
diff options
context:
space:
mode:
Diffstat (limited to 'ops.go')
-rw-r--r--ops.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ops.go b/ops.go
index 59fbcac..75b21a8 100644
--- a/ops.go
+++ b/ops.go
@@ -19,7 +19,7 @@ var (
func init() {
alphabet = List{list.New()}
for i := 0; i <= maxValue; i++ {
- alphabet.PushBack(i)
+ alphabet.PushBack(formatRoman(i))
}
zero = Element{alphabet.Front()}
one = Element{zero.Next()}