Skip to content

Commit f0008f6

Browse files
committed
Fix bad refactor
1 parent 8dda584 commit f0008f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/helpers.gleam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ pub fn error_to_string(error: ParseError) -> String {
6767
<> "\" ("
6868
<> int.to_string(value)
6969
<> ") at position "
70-
<> int.to_string(value)
70+
<> int.to_string(index)
7171
<> " is out of range for base: "
7272
<> int.to_string(base)
7373
InvalidExponentSymbolPosition(index, exponent_symbol) ->

0 commit comments

Comments
 (0)