# HG changeset patch # User jwe # Date 1180507342 0 # Node ID 2f0abcba669c59f50bfa57da483cf6afd8aa6b1e # Parent 9042b00fc45ed4fb32349693fa9e2c641174b39c [project @ 2007-05-30 06:42:22 by jwe] diff --git a/doc/ChangeLog b/doc/ChangeLog --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,7 @@ +2007-05-30 G. D. McBain + + * interpreter/expr.txi (Assignment Ops): Doc fix. + 2007-05-29 Steven Mestdagh * interpreter/Makefile.in ($(HTML_IMAGES_PNG)): Use cp instead of diff --git a/doc/interpreter/expr.txi b/doc/interpreter/expr.txi --- a/doc/interpreter/expr.txi +++ b/doc/interpreter/expr.txi @@ -871,7 +871,7 @@ @end example @noindent -deletes the first, second, and fifth columns. +deletes the first, third, and fifth columns. An assignment is an expression, so it has a value. Thus, @code{z = 1} as an expression has the value 1. One consequence of this is that you diff --git a/scripts/plot/plot.m b/scripts/plot/plot.m --- a/scripts/plot/plot.m +++ b/scripts/plot/plot.m @@ -59,7 +59,7 @@ ## the elements, starting with 1. ## ## @item -## If the @var{x} is a vector and @var{y} is a matrix, the +## If the @var{x} is a vector and @var{y} is a matrix, then ## the columns (or rows) of @var{y} are plotted versus @var{x}. ## (using whichever combination matches, with columns tried first.) ## @@ -159,7 +159,7 @@ ## plot (b, "*", "markersize", 3) ## @end example ## -## This command will plot the data in the variable @code{b} will be plotted +## This command will plot the data in the variable @code{b}, ## with points displayed as @samp{*} with a marker size of 3. ## ## @example