Fix typos in parameter value docstrings
This commit is contained in:
parent
7cd7294b22
commit
f11b3c1a03
3 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue