Skip to content

Commit fdbf3b8

Browse files
committed
fix?
1 parent 24cd47f commit fdbf3b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

makeTables.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ def mkNumericValue : IO <| Array (UInt32 × UInt32 × NumericType) := do
374374
for d in UnicodeData.data do
375375
match d.numeric with
376376
| some (.decimal 0) =>
377-
t := t.push (d.code, d.code + 9, .decimal 0)
377+
t := t.push (d.code, d.code + 9, NumericType.decimal 0)
378378
| some (.digit v) =>
379379
match t.back! with
380380
| (c₀, c₁, n@(NumericType.digit x)) =>

0 commit comments

Comments
 (0)