diff options
author | Armin Rigo <arigo@tunes.org> | 2005-11-10 18:02:53 +0000 |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2005-11-10 18:02:53 +0000 |
commit | c59ec9ba00dea559bfbe671c1bc8c1843ef0d4d6 (patch) | |
tree | a80a4c5eac93114ffe2a12196654485a476c3e29 /pypy/doc/image | |
parent | Further simplified the content of this informal graph. (diff) | |
download | pypy-c59ec9ba00dea559bfbe671c1bc8c1843ef0d4d6.tar.gz pypy-c59ec9ba00dea559bfbe671c1bc8c1843ef0d4d6.tar.bz2 pypy-c59ec9ba00dea559bfbe671c1bc8c1843ef0d4d6.zip |
typo
Diffstat (limited to 'pypy/doc/image')
-rw-r--r-- | pypy/doc/image/stackless_informal.dot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pypy/doc/image/stackless_informal.dot b/pypy/doc/image/stackless_informal.dot index 392ec6c618..f5312e05d2 100644 --- a/pypy/doc/image/stackless_informal.dot +++ b/pypy/doc/image/stackless_informal.dot @@ -11,7 +11,7 @@ digraph mul_graph { mul_4 [shape="ellipse", label="store y and z on the heap\nstart unwinding the stack", color="blue"]; mul_5 [shape="box", label="result = p + y"]; mul_r3 [shape="ellipse", label="load saved variables y and z\lfrom the heap", color="blue"]; - mul_s3 [shape="ellipse", label="save x and y to the heap\lcontinue unwinding", color="blue"]; + mul_s3 [shape="ellipse", label="save y and z to the heap\lcontinue unwinding", color="blue"]; mul -> mul_r [label="startblock"]; mul_r -> mul_0 [label="No: x y"]; mul_r -> mul_r3 [label="Yes: (ignore input args)"]; |