Skip to content

Commit 02d680f

Browse files
FIXUP: s/u8/_/
1 parent 8df658d commit 02d680f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

naga/src/back/spv/helpers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub(super) fn debug_str_bytes_to_words(bytes: &[u8]) -> Vec<Word> {
2929
sanitized = bytes
3030
.iter()
3131
.map(|&b| if b == 0 { b'?' } else { b })
32-
.collect::<Vec<u8>>();
32+
.collect::<Vec<_>>();
3333
&sanitized[..]
3434
} else {
3535
bytes

0 commit comments

Comments
 (0)