Skip to content

Commit 519cc82

Browse files
committed
Book: small improvement to a table to make it clearer
1 parent d0ca0ca commit 519cc82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/book/the-stack-and-the-heap.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ And then `bold()` calls `italic()`:
175175
| **2** | **b**|**100**|
176176
| **1** | **a**| **5** |
177177
| 0 | x | 42 |
178+
178179
Whew! Our stack is growing tall.
179180

180181
After `italic()` is over, its frame is deallocated, leaving only `bold()` and
@@ -260,8 +261,7 @@ layout of a program which has been running for a while now:
260261
| (2<sup>30</sup>) - 3 | | |
261262
| (2<sup>30</sup>) - 4 | | 42 |
262263
| ... | ... | ... |
263-
| 3 | y | → (2<sup>30</sup>) - 4 |
264-
| 2 | y | 42 |
264+
| 2 | z | → (2<sup>30</sup>) - 4 |
265265
| 1 | y | 42 |
266266
| 0 | x | → (2<sup>30</sup>) - 1 |
267267

0 commit comments

Comments
 (0)