Skip to content

Commit 98e145a

Browse files
committed
Rename method for consistency
1 parent c3c042a commit 98e145a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/blocking/i2s.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ pub trait WriteIter<W> {
3232
type Error;
3333

3434
/// Sends `left_words` and `right_words` to the slave.
35-
fn try_write<LW, RW>(&mut self, left_words: LW, right_words: RW) -> Result<(), Self::Error>
35+
fn try_write_iter<LW, RW>(
36+
&mut self,
37+
left_words: LW,
38+
right_words: RW,
39+
) -> Result<(), Self::Error>
3640
where
3741
LW: IntoIterator<Item = W>,
3842
RW: IntoIterator<Item = W>;

0 commit comments

Comments
 (0)