# HG changeset patch # User Rik # Date 1404092144 25200 # Node ID 4cdab29731717ead2476d171363ceb9b6e927cd8 # Parent ca0d9844dfd78fd26b82bf5bdda3fa999286c28e maint: Fix some spellings in error messages. * ov-class.cc (Fisa): Correct spelling of "attay" to "array". * ov-usr-fcn.cc (Fnargin, Fnargout): Use spelling "built-in" in error messages for consistency with rest of Octave. diff -r ca0d9844dfd7 -r 4cdab2973171 libinterp/octave-value/ov-class.cc --- a/libinterp/octave-value/ov-class.cc Sun Jun 29 13:23:24 2014 -0700 +++ b/libinterp/octave-value/ov-class.cc Sun Jun 29 18:35:44 2014 -0700 @@ -1950,7 +1950,7 @@ const Array cls = args(1).cellstr_value (); if (error_state) { - error ("isa: CLASSNAME must be a string or cell attay of strings"); + error ("isa: CLASSNAME must be a string or cell array of strings"); return retval; } diff -r ca0d9844dfd7 -r 4cdab2973171 libinterp/octave-value/ov-usr-fcn.cc --- a/libinterp/octave-value/ov-usr-fcn.cc Sun Jun 29 13:23:24 2014 -0700 +++ b/libinterp/octave-value/ov-usr-fcn.cc Sun Jun 29 18:35:44 2014 -0700 @@ -890,7 +890,7 @@ { // Matlab gives up for histc, // so maybe it's ok that that we give up somtimes too? - error ("nargin: nargin information not available for builtin functions"); + error ("nargin: nargin information not available for built-in functions"); } } else @@ -1012,7 +1012,7 @@ // without making intrusive changes to Octave. // Matlab gives up for histc, // so maybe it's ok that we give up somtimes too? - error ("nargout: nargout information not available for builtin functions."); + error ("nargout: nargout information not available for built-in functions."); } } else