From octave-maintainers-request at bevo dot che dot wisc dot edu Mon Feb 16 10:23:57 2004 Subject: One from the spelling fairy From: "John W. Eaton" To: David Bateman Cc: octave-maintainers at bevo dot che dot wisc dot edu Date: Mon, 16 Feb 2004 10:23:11 -0600 On 16-Feb-2004, David Bateman wrote: | | % cd liboctave/ | % grep converstion *.cc | boolNDArray.cc: ("invalid converstion of boolNDArray to boolMatrix"); | chNDArray.cc: ("invalid converstion of charNDArray to charMatrix"); | CNDArray.cc: ("invalid converstion of ComplexNDArray to ComplexMatrix"); | dNDArray.cc: ("invalid converstion of NDArray to Matrix"); | % cat boolNDArray.cc | sed 's/converstion/conversion/g' > boolNDArray.cc.tmp | % mv boolNDArray.cc.tmp boolNDArray.cc | % cat chNDArray.cc | sed 's/converstion/conversion/g' > chNDArray.cc.tmp | % mv chNDArray.cc.tmp chNDArray.cc | % cat CNDArray.cc | sed 's/converstion/conversion/g' > CNDArray.cc.tmp | % mv CNDArray.cc.tmp CNDArray.cc | % cat dNDArray.cc | sed 's/converstion/conversion/g' > dNDArray.cc.tmp | % mv dNDArray.cc.tmp dNDArray.cc I made these changes. Thanks, jwe