From 1139a4f0c17aa1fcc71c5e069445c81a6dbe471f Mon Sep 17 00:00:00 2001 From: Thomas Breloff Date: Thu, 10 Sep 2015 15:48:38 -0400 Subject: [PATCH] readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 66dfd417..6fa907d9 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Do a plot in Qwt, then save a png: ``` plot(rand(10,2); marker = :rect) -savepng(ans, Plots.IMG_DIR * "qwt1.png") +savepng(Plots.IMG_DIR * "qwt1.png") ``` which saves: @@ -48,7 +48,7 @@ Do a plot in Gadfly, then save a png: ``` plotter!(:gadfly) # switches the backend to Gadfly plot(rand(10,2); marker = :rect) -savepng(ans, Plots.IMG_DIR * "gadfly1.png") +savepng(Plots.IMG_DIR * "gadfly1.png") ``` which saves: