Fixed an incorrect stack comment where an "a" just vanished (thanks /u/bagtowneast)

This commit is contained in:
Peter Fidelman 2022-05-30 12:44:28 -07:00
parent 46061b384e
commit 81bc881705
2 changed files with 2 additions and 2 deletions

View file

@ -1919,7 +1919,7 @@ but ours isn't, so we are fine.
AND, /* ( n a old-highbyte ) r: ( caller ) */
SWP, TOR, /* ( n old-highbyte ) r: ( caller a ) */
OR, /* ( new-n ) r: ( caller a ) */
RTO, /* ( new-n ) r: ( caller ) */
RTO, /* ( new-n a ) r: ( caller ) */
ST, /* ( ) r: ( caller ) */
RET);
```

View file

@ -1816,7 +1816,7 @@ fn build_dictionary(c: &mut Core) {
AND, /* ( n a old-highbyte ) r: ( caller ) */
SWP, TOR, /* ( n old-highbyte ) r: ( caller a ) */
OR, /* ( new-n ) r: ( caller a ) */
RTO, /* ( new-n ) r: ( caller ) */
RTO, /* ( new-n a ) r: ( caller ) */
ST, /* ( ) r: ( caller ) */
RET);