Fix typo in pos_seconds documentation
This commit is contained in:
parent
cec0a7a8a5
commit
6c0df7ec39
1 changed files with 2 additions and 4 deletions
|
@ -124,8 +124,7 @@ pub struct Transport {
|
||||||
// something similar in CLAP so it may be best to just ignore that so you can't rely on it
|
// something similar in CLAP so it may be best to just ignore that so you can't rely on it
|
||||||
/// The position in the song in samples. Can be used to calculate the time in seconds if needed.
|
/// The position in the song in samples. Can be used to calculate the time in seconds if needed.
|
||||||
pub(crate) pos_samples: Option<i64>,
|
pub(crate) pos_samples: Option<i64>,
|
||||||
/// The position in the song in quarter notes. Can be used to calculate the time in samples if
|
/// The position in the song in seconds. Can be used to calculate the time in samples if needed.
|
||||||
/// needed.
|
|
||||||
pub(crate) pos_seconds: Option<f64>,
|
pub(crate) pos_seconds: Option<f64>,
|
||||||
/// The position in the song in quarter notes. Can be calculated from the time in seconds and
|
/// The position in the song in quarter notes. Can be calculated from the time in seconds and
|
||||||
/// the tempo if needed.
|
/// the tempo if needed.
|
||||||
|
@ -197,8 +196,7 @@ impl Transport {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The position in the song in quarter notes. Will be calculated from other information if
|
/// The position in the song in seconds. Can be used to calculate the time in samples if needed.
|
||||||
/// needed.
|
|
||||||
pub fn pos_seconds(&self) -> Option<f64> {
|
pub fn pos_seconds(&self) -> Option<f64> {
|
||||||
match (
|
match (
|
||||||
self.pos_samples,
|
self.pos_samples,
|
||||||
|
|
Loading…
Add table
Reference in a new issue