fix documentation warnings
This commit is contained in:
parent
1a5427ae87
commit
888205b3ef
2 changed files with 2 additions and 1 deletions
|
@ -82,6 +82,7 @@ pub fn fast_sin(x: f32) -> f32 {
|
|||
/// Don't forget to call [init_white_noise_tab] before using it.
|
||||
static mut WHITE_NOISE_TAB: [f64; 1024] = [0.0; 1024];
|
||||
|
||||
#[allow(rustdoc::private_intra_doc_links)]
|
||||
/// Initializes [WHITE_NOISE_TAB].
|
||||
pub fn init_white_noise_tab() {
|
||||
let mut rng = RandGen::new();
|
||||
|
|
|
@ -302,7 +302,7 @@ pub struct Matrix {
|
|||
/// using [Matrix::set_prop] and [Matrix::get_prop].
|
||||
properties: HashMap<String, SAtom>,
|
||||
|
||||
/// Stores the [dsp::ParamId] of the inputs that have an output
|
||||
/// Stores the [crate::dsp::ParamId] of the inputs that have an output
|
||||
/// assigned to them. It's updates when [Matrix::edges] is updated and used
|
||||
/// by [Matrix::param_input_is_used] to return whether a parameter is
|
||||
/// controlled by some output port.
|
||||
|
|
Loading…
Reference in a new issue