We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d81f53d commit f6d61aaCopy full SHA for f6d61aa
src/uu/uniq/src/uniq.rs
@@ -312,7 +312,7 @@ impl Uniq {
312
313
// This function does not use `self`, so make it an associated function.
314
// Also remove needless explicit lifetimes to satisfy clippy::needless-lifetimes.
315
- fn build_count_prefix(count: usize,buf: &mut [u8; Self::COUNT_PREFIX_BUF_SIZE],) -> &[u8] {
+ fn build_count_prefix(count: usize, buf: &mut [u8; Self::COUNT_PREFIX_BUF_SIZE]) -> &[u8] {
316
let mut digits_buf = [0u8; 20];
317
let mut value = count;
318
let mut idx = digits_buf.len();
0 commit comments