diff --git a/src/doc/trpl/the-stack-and-the-heap.md b/src/doc/trpl/the-stack-and-the-heap.md index 9622a92303f1e..c47dbd9789354 100644 --- a/src/doc/trpl/the-stack-and-the-heap.md +++ b/src/doc/trpl/the-stack-and-the-heap.md @@ -430,7 +430,7 @@ Next, `foo()` calls `bar()` with `x` and `z`: | 230 | | 20 | | (230) - 1 | | 5 | | ... | ... | ... | -| 10 | e | 4 | +| 10 | e | 9 | | 9 | d | (230) - 1 | | 8 | c | 5 | | 7 | b | 4 | @@ -455,7 +455,7 @@ At the end of `bar()`, it calls `baz()`: | ... | ... | ... | | 12 | g | 100 | | 11 | f | 4 | -| 10 | e | 4 | +| 10 | e | 9 | | 9 | d | (230) - 1 | | 8 | c | 5 | | 7 | b | 4 | @@ -477,7 +477,7 @@ After `baz()` is over, we get rid of `f` and `g`: | 230 | | 20 | | (230) - 1 | | 5 | | ... | ... | ... | -| 10 | e | 4 | +| 10 | e | 9 | | 9 | d | (230) - 1 | | 8 | c | 5 | | 7 | b | 4 |