mirror of
https://github.com/RustAudio/rodio
synced 2024-12-14 06:02:31 +00:00
Update comments to follow cpal` 0.7 convention
This commit is contained in:
parent
95917f2e0f
commit
a959cd618b
3 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
use cpal;
|
||||
|
||||
/// Iterator that converts from a certain channels count to another.
|
||||
/// Iterator that converts from a certain channel count to another.
|
||||
#[derive(Clone, Debug)]
|
||||
pub struct ChannelCountConverter<I>
|
||||
where I: Iterator
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*!
|
||||
This module contains function that will convert from one PCM format to another.
|
||||
|
||||
This includes conversion between samples formats, channels or sample rates.
|
||||
This includes conversion between sample formats, channels or sample rates.
|
||||
|
||||
*/
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ use cpal;
|
|||
|
||||
use std::mem;
|
||||
|
||||
/// Iterator that converts from a certain samples rate to another.
|
||||
/// Iterator that converts from a certain sample rate to another.
|
||||
#[derive(Clone, Debug)]
|
||||
pub struct SampleRateConverter<I>
|
||||
where I: Iterator
|
||||
|
|
Loading…
Reference in a new issue