Skip to content

Commit 2993875

Browse files
authored
Merge pull request #168 from Mark-Simulacrum/fix-lint
Avoid lint on nightly
2 parents b5768e3 + ac49f52 commit 2993875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

measureme/src/stringtable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ impl<'s> StringComponent<'s> {
186186
assert!(STRING_REF_ENCODED_SIZE == 5);
187187

188188
bytes[0] = STRING_REF_TAG;
189-
&mut bytes[1..5].copy_from_slice(&string_id.0.to_le_bytes());
189+
bytes[1..5].copy_from_slice(&string_id.0.to_le_bytes());
190190
&mut bytes[5..]
191191
}
192192
}

0 commit comments

Comments
 (0)