changeset 6672:2f0abcba669c

[project @ 2007-05-30 06:42:22 by jwe]
author jwe
date Wed, 30 May 2007 06:42:22 +0000
parents 9042b00fc45e
children 81a24fed2f57
files doc/ChangeLog doc/interpreter/expr.txi scripts/plot/plot.m
diffstat 3 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog	Wed May 30 06:35:52 2007 +0000
+++ b/doc/ChangeLog	Wed May 30 06:42:22 2007 +0000
@@ -1,3 +1,7 @@
+2007-05-30  G. D. McBain  <gdmcbain@freeshell.org>
+
+	* interpreter/expr.txi (Assignment Ops): Doc fix.
+
 2007-05-29  Steven Mestdagh  <steven.mestdagh@esat.kuleuven.be>
 
 	* interpreter/Makefile.in ($(HTML_IMAGES_PNG)): Use cp instead of
--- a/doc/interpreter/expr.txi	Wed May 30 06:35:52 2007 +0000
+++ b/doc/interpreter/expr.txi	Wed May 30 06:42:22 2007 +0000
@@ -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
--- a/scripts/plot/plot.m	Wed May 30 06:35:52 2007 +0000
+++ b/scripts/plot/plot.m	Wed May 30 06:42:22 2007 +0000
@@ -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