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 5d7d112 commit 000c0a6Copy full SHA for 000c0a6
1 file changed
src/buffer.rs
@@ -90,9 +90,9 @@ impl TokenBuffer {
90
// pointer into it.
91
let entries = entries.into_boxed_slice();
92
let len = entries.len();
93
- // Convert our boxed slice into a pointer to the first element early,
94
- // to avoid invalidating pointers into this slice when we move the Box
95
- // see https://github.com/rust-lang/unsafe-code-guidelines/issues/326
+ // Convert boxed slice into a pointer to the first element early, to
+ // avoid invalidating pointers into this slice when we move the Box.
+ // See https://github.com/rust-lang/unsafe-code-guidelines/issues/326
96
let entries = Box::into_raw(entries) as *mut Entry;
97
for (idx, group) in groups {
98
// We know that this index refers to one of the temporary
0 commit comments