Skip to content

Commit 36ce9ab

Browse files
committed
🐎 [Text] Fix type instabilities
1 parent 3aedae5 commit 36ce9ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backends/text/text_backend.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1237,7 +1237,7 @@ function _text__print_table(
12371237
table_str[ir, jr]
12381238
else
12391239
if current_row_line <= length(tokens[jr])
1240-
tokens[jr][current_row_line]
1240+
String(tokens[jr][current_row_line])
12411241
else
12421242
""
12431243
end
@@ -1280,7 +1280,7 @@ function _text__print_table(
12801280
tokens_jr = tokens[jr]
12811281

12821282
if current_row_line <= length(tokens_jr)
1283-
string(tokens_jr[current_row_line])
1283+
String(tokens_jr[current_row_line])
12841284
else
12851285
""
12861286
end

0 commit comments

Comments
 (0)