changeset 18984:1197f04eec09 stable

doc: minor typo fixes and copy-paste error. * package.txi: Correct typos. * toeplitz.m: Correct warning message which should refer to "diagonal" rather than "anti-diagonal".
author Colin Macdonald <cbm@m.fsf.org>
date Tue, 15 Jul 2014 00:14:18 +0100
parents 8de35ac99e80
children 082063dc2165
files doc/interpreter/package.txi scripts/special-matrix/toeplitz.m
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/doc/interpreter/package.txi	Fri Aug 01 14:06:35 2014 -0400
+++ b/doc/interpreter/package.txi	Tue Jul 15 00:14:18 2014 +0100
@@ -271,7 +271,7 @@
 loaded.
 @end table
 
-Besides the above mentioned files, a package can also contain on or
+Besides the above mentioned files, a package can also contain one or
 more of the following directories:
 
 @table @code
@@ -359,7 +359,7 @@
 
 @item Version
 Version of the package.  A package version must be 3 numbers separated
-by a dot.
+by dots.
 
 @item Date
 Date of last update.
--- a/scripts/special-matrix/toeplitz.m	Fri Aug 01 14:06:35 2014 -0400
+++ b/scripts/special-matrix/toeplitz.m	Tue Jul 15 00:14:18 2014 +0100
@@ -74,7 +74,7 @@
     if (! (isvector (c) && isvector (r))) 
       error ("toeplitz: C and R must be vectors");
     elseif (r(1) != c(1))
-      warning ("toeplitz: column wins anti-diagonal conflict");
+      warning ("toeplitz: column wins diagonal conflict");
     endif
 
     nr = length (c);