summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorTobias Schmitz <tobiasschmitz2001@gmail.com>2025-07-03 14:12:15 +0200
committerTobias Schmitz <tobiasschmitz2001@gmail.com>2025-07-03 18:43:20 +0200
commit7892a8c726aac142dc599c2ba0825241932b2c7c (patch)
tree87c73e1ffa9146c47df8ad311dd312cda7544d07 /crates
parentf324accff908e8ffaae8d00eacd3040d18b0ff1e (diff)
chore: update krilla
Diffstat (limited to 'crates')
-rw-r--r--crates/typst-pdf/src/tags/table.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-pdf/src/tags/table.rs b/crates/typst-pdf/src/tags/table.rs
index ad67c484..26df629f 100644
--- a/crates/typst-pdf/src/tags/table.rs
+++ b/crates/typst-pdf/src/tags/table.rs
@@ -318,7 +318,7 @@ fn table_cell_id(table_id: TableId, x: u32, y: u32) -> TagId {
bytes[0..4].copy_from_slice(&table_id.0.to_ne_bytes());
bytes[4..8].copy_from_slice(&x.to_ne_bytes());
bytes[8..12].copy_from_slice(&y.to_ne_bytes());
- TagId::from_bytes(&bytes)
+ TagId::from_slice(&bytes)
}
fn table_header_scope(scope: TableHeaderScope) -> krilla::tagging::TableHeaderScope {