Skip to content

Commit

Permalink
Book: small improvement to a table to make it clearer
Browse files Browse the repository at this point in the history
  • Loading branch information
royalstream committed May 19, 2016
1 parent d0ca0ca commit 519cc82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/doc/book/the-stack-and-the-heap.md
Expand Up @@ -175,6 +175,7 @@ And then `bold()` calls `italic()`:
| **2** | **b**|**100**|
| **1** | **a**| **5** |
| 0 | x | 42 |

Whew! Our stack is growing tall.

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

Expand Down

0 comments on commit 519cc82

Please sign in to comment.