# HG changeset patch
# User Karl-Dieter Crisman <kcrisman@gmail.com>
# Date 1294972861 18000
# Node ID 80f3dc698bb573db2073252a6cdea56222939c2b
# Parent 915615bd5d72ca952043ee76cb9942dda9dc35e0
Trac 8632 - reviewer patch to fix documentation
diff -r 915615bd5d72 -r 80f3dc698bb5 sage/plot/plot.py
a
|
b
|
|
2401 | 2401 | sage: plot(x^2 - 5, (x, 0, 5), ymin=0).save( |
2402 | 2402 | ... sage.misc.misc.tmp_filename() + '.png') |
2403 | 2403 | |
2404 | | will save the same plot as the one shown by |
| 2404 | will save the same plot as the one shown by this command:: |
2405 | 2405 | |
2406 | 2406 | sage: plot(x^2 - 5, (x, 0, 5), ymin=0) |
2407 | 2407 | |