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
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ jobs:
command: fmt
args: --check

- name: cargo doc
uses: actions-rs/cargo@v1
with:
command: doc
args: --no-deps --config 'build.rustdocflags="-D warnings"'

- name: cargo clippy
uses: actions-rs/cargo@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//! - Supports CBOR and JSON encodings, controlled by the `ciborium` and
//! `serde_json` features.
//!
//! - An "Intermediate Validation Tree" ([`ivt`](crate::ivt)) is constructed
//! - An "Intermediate Validation Tree" ([`ivt`]) is constructed
//! from the CDDL AST; this removes some of the CDDL syntax detail resulting
//! in a simplified tree that can be more easily validated. The IVT is
//! constructed almost entirely of [`Node`](crate::ivt::Node) elements,
Expand Down
Loading