diff --git a/rust/ares/src/mem.rs b/rust/ares/src/mem.rs index 9a6352a..873dedd 100644 --- a/rust/ares/src/mem.rs +++ b/rust/ares/src/mem.rs @@ -123,7 +123,7 @@ impl NockStack { } } - /** Resets the NockStack. */ + /** Resets the NockStack. The top frame is west as in the initial creation of the NockStack. */ pub fn reset(&mut self, top_slots: usize) { self.frame_pointer = unsafe { self.start.add(RESERVED + top_slots) } as *mut u64; self.stack_pointer = self.frame_pointer;