Skip to content

Commit fda13dd

Browse files
authored
Fix documentation rendering (#1671)
1 parent 4e0834d commit fda13dd

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

plonky2/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ harness = false
8787
# Display math equations properly in documentation
8888
[package.metadata.docs.rs]
8989
rustdoc-args = ["--html-in-header", ".cargo/katex-header.html"]
90-
cargo-args = ["--no-deps"]
9190

9291
[lints]
9392
workspace = true

starky/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ env_logger = { version = "0.9.0", default-features = false }
3737
# Display math equations properly in documentation
3838
[package.metadata.docs.rs]
3939
rustdoc-args = ["--html-in-header", ".cargo/katex-header.html"]
40-
cargo-args = ["--no-deps"]
4140

4241
[lints]
4342
workspace = true

starky/src/proof.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ pub struct StarkProofChallengesTarget<const D: usize> {
189189
/// `Target`s for the randomness used in FRI.
190190
pub fri_challenges: FriChallengesTarget<D>,
191191
}
192-
193-
/// Randomness for all STARK proofs contained in a [`MultiProof`]`.
192+
/// Randomness for all STARK proofs contained in a MultiProof.
193+
// TODO: remove?
194194
#[derive(Debug)]
195195
pub struct MultiProofChallenges<F: RichField + Extendable<D>, const D: usize, const N: usize> {
196196
/// Randomness used in each STARK proof.

0 commit comments

Comments
 (0)