style: same as prev commit

This commit is contained in:
Alex Shelkovnykov 2024-02-02 21:24:38 -06:00 committed by GitHub
parent 2a040b565b
commit e02a232f2c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -841,11 +841,11 @@ impl NockStack {
* The below functions are useful for debugging NockStack issues. */
/**
* Walk down the NockStack, printing frames. Absolutely no safety checks are peformed, as the
* purpose is to discover garbage data; just print pointers until the bottom of the NockStack
* (i.e. a null frame pointer) is encountered. Possible to crash, if a frame pointer gets
* written over.
*/
* Walk down the NockStack, printing frames. Absolutely no safety checks are peformed, as the
* purpose is to discover garbage data; just print pointers until the bottom of the NockStack
* (i.e. a null frame pointer) is encountered. Possible to crash, if a frame pointer gets
* written over.
*/
pub fn print_frames(&mut self) {
let mut fp = self.frame_pointer;
let mut sp = self.stack_pointer;