Skip to content

Commit 31d53e4

Browse files
committed
docs: Fix internal intra-doc links
1 parent 2156207 commit 31d53e4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: cargo fmt --all -- --check
3838

3939
- name: Build documentation
40-
run: cargo doc --no-deps --workspace
40+
run: cargo doc --no-deps --workspace --document-private-items
4141
env:
4242
RUSTDOCFLAGS: -D warnings
4343

twenty-first/src/math/ntt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ where
110110
/// appropriate order, or whether
111111
/// - the passed-in log₂ of the slice length matches.
112112
///
113-
/// Use [NTT][self:ntt] if you want a nicer interface.
113+
/// Use [NTT][self::ntt] if you want a nicer interface.
114114
#[expect(clippy::many_single_char_names)]
115115
#[inline]
116116
fn ntt_unchecked<FF>(x: &mut [FF], omega: BFieldElement, log2_slice_len: u32)

twenty-first/src/math/polynomial.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ where
623623

624624
/// Regulates the recursion depth at which
625625
/// [Fast modular coset interpolation](Self::fast_modular_coset_interpolate)
626-
/// is slower and switches to [INTT](ntt::intt)-then-[reduce](Self::reduce).
626+
/// is slower and switches to [INTT][intt]-then-[reduce](Self::reduce).
627627
const FAST_MODULAR_COSET_INTERPOLATE_CUTOFF_THRESHOLD_PREFER_INTT: usize = 1 << 17;
628628

629629
/// Regulates when to prefer the [Fast coset extrapolation](Self::fast_coset_extrapolate)

0 commit comments

Comments
 (0)