File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 37
37
run : cargo fmt --all -- --check
38
38
39
39
- name : Build documentation
40
- run : cargo doc --no-deps --workspace
40
+ run : cargo doc --no-deps --workspace --document-private-items
41
41
env :
42
42
RUSTDOCFLAGS : -D warnings
43
43
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ where
110
110
/// appropriate order, or whether
111
111
/// - the passed-in log₂ of the slice length matches.
112
112
///
113
- /// Use [NTT][self:ntt] if you want a nicer interface.
113
+ /// Use [NTT][self:: ntt] if you want a nicer interface.
114
114
#[ expect( clippy:: many_single_char_names) ]
115
115
#[ inline]
116
116
fn ntt_unchecked < FF > ( x : & mut [ FF ] , omega : BFieldElement , log2_slice_len : u32 )
Original file line number Diff line number Diff line change @@ -623,7 +623,7 @@ where
623
623
624
624
/// Regulates the recursion depth at which
625
625
/// [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).
627
627
const FAST_MODULAR_COSET_INTERPOLATE_CUTOFF_THRESHOLD_PREFER_INTT : usize = 1 << 17 ;
628
628
629
629
/// Regulates when to prefer the [Fast coset extrapolation](Self::fast_coset_extrapolate)
You can’t perform that action at this time.
0 commit comments