Skip to content

Commit 441bc7c

Browse files
Consistency for implementation depth
Signed-off-by: Luca Della Vedova <lucadv@intrinsic.ai>
1 parent 7bfd06e commit 441bc7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/buffer/buffered.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,9 @@ macro_rules! impl_buffered_for_tuple {
176176
}
177177
}
178178

179-
// Implements the `Buffered` trait for all tuples between size 2 and 15
179+
// Implements the `Buffered` trait for all tuples between size 2 and 12
180180
// (inclusive) made of types that implement `Buffered`
181-
all_tuples!(impl_buffered_for_tuple, 2, 15, T);
181+
all_tuples!(impl_buffered_for_tuple, 2, 12, T);
182182

183183
impl<T: Buffered, const N: usize> Buffered for [T; N] {
184184
fn buffered_count(

0 commit comments

Comments
 (0)