Fix pointer value in the 'complex example'

The `f` argument will reference the actual value in the `d` box, not the
box in the `bar`'s stack frame.
This commit is contained in:
Mihaly Barasz 2015-11-30 16:51:38 +01:00
parent fd2626cc3f
commit 7728742a44

View file

@ -464,7 +464,7 @@ At the end of `bar()`, it calls `baz()`:
| (2<sup>30</sup>) - 2 | | 5 |
| ... | ... | ... |
| 12 | g | 100 |
| 11 | f | → 9 |
| 11 | f | → (2<sup>30</sup>) - 2 |
| 10 | e | → 9 |
| 9 | d | → (2<sup>30</sup>) - 2 |
| 8 | c | 5 |