Skip to content

Commit

Permalink
lint: conditionally include zktrie spec when doctest not being run
Browse files Browse the repository at this point in the history
  • Loading branch information
frisitano committed Dec 9, 2024
1 parent 1727e26 commit cbf2e8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/scroll/trie/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Fast binary Merkle-Patricia Trie (zktrie) state root calculator and proof generator for
//! prefix-sorted bits.
#![doc = include_str!("../assets/zktrie.md")]
#![cfg_attr(not(doctest), doc = include_str!("../assets/zktrie.md"))]

#[macro_use]
#[allow(unused_imports)]
Expand Down

0 comments on commit cbf2e8d

Please sign in to comment.