Update comments to follow cpal` 0.7 convention

This commit is contained in:
Francesco Zardi 2018-04-18 14:53:04 +02:00
parent 95917f2e0f
commit a959cd618b
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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.
*/

View file

@ -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