diff --git a/crates/jstz_engine/src/gc/ptr.rs b/crates/jstz_engine/src/gc/ptr.rs index 2be6a7dbd..dc4dedae8 100644 --- a/crates/jstz_engine/src/gc/ptr.rs +++ b/crates/jstz_engine/src/gc/ptr.rs @@ -96,7 +96,7 @@ impl GcPtr { /// points to a valid `js::gc::Cell`. pub unsafe fn get(&self) -> T { // Note: read_unaligned is used since SpiderMonkey doesn't - // guarantee the expected align of Rust pointers. + // guarantee the expected alignment of Rust pointers. self.inner_ptr.get().read_unaligned() }