1
0
Fork 0

Fix typos in parameter value docstrings

This commit is contained in:
Robbert van der Helm 2022-07-04 18:01:55 +02:00
parent 7cd7294b22
commit f11b3c1a03
3 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@ use super::{Param, ParamFlags, ParamMut};
/// A simple boolean parameter.
#[repr(C, align(4))]
pub struct BoolParam {
/// The field's current value.
/// The field's current value, after monophonic modulation has been applied.
pub value: bool,
/// The field's current value normalized to the `[0, 1]` range.
normalized_value: f32,

View file

@ -21,7 +21,7 @@ use super::{Param, ParamFlags, ParamMut};
// a partially written to value here. We should probably reconsider this at some point though.
#[repr(C, align(4))]
pub struct FloatParam {
/// The field's current plain, unnormalized value.
/// The field's current plain value, after monophonic modulation has been applied.
pub value: f32,
/// The field's current value normalized to the `[0, 1]` range.
normalized_value: f32,

View file

@ -21,7 +21,7 @@ use super::{Param, ParamFlags, ParamMut};
// a partially written to value here. We should probably reconsider this at some point though.
#[repr(C, align(4))]
pub struct IntParam {
/// The field's current plain, unnormalized value.
/// The field's current plain value, after monophonic modulation has been applied.
pub value: i32,
/// The field's current value normalized to the `[0, 1]` range.
normalized_value: f32,