From c7f92018accf8fd27fdac5acbe7fe3506c338ed1 Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Sun, 24 May 2015 15:18:43 -0700 Subject: [PATCH] Fix typo in diagram demonstrating stack vs. heap values --- src/doc/trpl/the-stack-and-the-heap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/the-stack-and-the-heap.md b/src/doc/trpl/the-stack-and-the-heap.md index 187ca577aca..2c5f5927fd1 100644 --- a/src/doc/trpl/the-stack-and-the-heap.md +++ b/src/doc/trpl/the-stack-and-the-heap.md @@ -454,7 +454,7 @@ At the end of `bar()`, it calls `baz()`: | (230) - 1 | | 5 | | ... | ... | ... | | 12 | g | 100 | -| 11 | f | 4 | +| 11 | f | 9 | | 10 | e | 9 | | 9 | d | (230) - 1 | | 8 | c | 5 |