# HG changeset patch # User Colin Macdonald # Date 1405379658 -3600 # Node ID 1197f04eec09708e5890065ea6dff322d3306d66 # Parent 8de35ac99e809023c0698093b00db2e2f40d4085 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". diff -r 8de35ac99e80 -r 1197f04eec09 doc/interpreter/package.txi --- 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. diff -r 8de35ac99e80 -r 1197f04eec09 scripts/special-matrix/toeplitz.m --- 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);