From 0d7212981999952ab9326effc40a5032fbdac932 Mon Sep 17 00:00:00 2001 From: Thomas Breloff Date: Wed, 2 Sep 2015 19:13:08 -0400 Subject: [PATCH] working on org/docs/test --- src/plotter.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plotter.jl b/src/plotter.jl index 6f9cceec..38362407 100644 --- a/src/plotter.jl +++ b/src/plotter.jl @@ -21,15 +21,15 @@ const CURRENT_PACKAGE = CurrentPackage(Nullable{PlottingPackage}()) doc"""Returns the current plotting package name.""" function plotter() if isnull(CURRENT_PACKAGE.pkg) - error("Must choose a plotter. Example: `plotter(:Qwt)`") + error("Must choose a plotter. Example: `plotter!(:qwt)`") end get(CURRENT_PACKAGE.pkg) end doc""" Setup the plot environment. -`plotter(:Qwt)` will load package Qwt.jl and map all subsequent plot commands to that package. -Same for `plotter(:Gadfly)`, etc. +`plotter!(:qwt)` will load package Qwt.jl and map all subsequent plot commands to that package. +Same for `plotter!(:gadfly)`, etc. """ function plotter!(modname)