Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ jobs:
run: |
cargo publish --manifest-path crates/foundation/Cargo.toml
cargo publish --manifest-path crates/core-invoice/Cargo.toml
cargo publish --manifest-path crates/render-pdf/Cargo.toml
cargo publish --manifest-path crates/render-typst/Cargo.toml
cargo publish --manifest-path crates/cli/Cargo.toml
- name: Create GitHub Release with verified tag
Expand Down
2 changes: 1 addition & 1 deletion crates/render-typst/src/error.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use thiserror::Error;

/// Result alias for render-pdf operations.
/// Result alias for render-typst operations.
pub type Result<T, E = Error> = std::result::Result<T, E>;

/// Errors that can occur while rendering Typst documents into PDF bytes.
Expand Down
Loading