# HG changeset patch # User Rik # Date 1373560232 25200 # Node ID a7c9be4a2c0f23706a7f52ca810de67d2ec4827e # Parent b34202b2421201d05d6b9d40ce0472921fe32995 fplot.m: Fix bad texinfo in docstring for changeset b34202b24212. * scripts/plot/fplot.m: use '@@' to generate '@'. Add missing '}' in @code macro. diff --git a/scripts/plot/fplot.m b/scripts/plot/fplot.m --- a/scripts/plot/fplot.m +++ b/scripts/plot/fplot.m @@ -42,13 +42,13 @@ ## ## With no output arguments the results are immediately plotted. With two ## output arguments the 2-D plot data is returned. The data can subsequently -## be plotted manually with @code{plot (@var{x}, @var{y}). +## be plotted manually with @code{plot (@var{x}, @var{y})}. ## ## Example: ## ## @example ## @group -## fplot (@cos, [0, 2*pi]) +## fplot (@@cos, [0, 2*pi]) ## fplot ("[cos(x), sin(x)]", [0, 2*pi]) ## @end group ## @end example