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 51d4bd0 commit 61587e4Copy full SHA for 61587e4
crates/oxc_linter/src/lib.rs
@@ -255,7 +255,7 @@ impl Linter {
255
let metadata = RawTransferMetadata::new(program_offset);
256
let metadata_ptr = allocator.end_ptr().cast::<RawTransferMetadata>();
257
// SAFETY: `Allocator` was created by `FixedSizeAllocator` which reserved space after `end_ptr`
258
- // for a `RawTransferMetadata`. `end_ptr` is aligned for `FixedSizeAllocator`.
+ // for a `RawTransferMetadata`. `end_ptr` is aligned for `RawTransferMetadata`.
259
unsafe { metadata_ptr.write(metadata) };
260
261
// Pass AST and rule IDs to JS
0 commit comments