Skip to content

Commit

Permalink
Fix column name of dump_fontdb() (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
yutannihilation authored Sep 19, 2024
1 parent b6611d2 commit 0a80426
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rust/src/result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ impl TryFrom<FontDBTibble> for savvy::Sexp {

out.set_name_and_value(
0,
"x",
"source",
<OwnedStringSexp>::try_from(value.source.as_slice())?,
)?;
out.set_name_and_value(
1,
"y",
"index",
<OwnedIntegerSexp>::try_from(value.index.as_slice())?,
)?;
out.set_name_and_value(
Expand Down

0 comments on commit 0a80426

Please sign in to comment.