diff scripts/strings/strcat.m @ 8664:e07e93c04080

style fixes
author John W. Eaton <jwe@octave.org>
date Wed, 04 Feb 2009 10:56:23 -0500
parents fd11a08a9b31
children eb63fbe60fab
line wrap: on
line diff
--- a/scripts/strings/strcat.m
+++ b/scripts/strings/strcat.m
@@ -73,7 +73,7 @@
         elseif (iscell (varargin{nv}))
           allchar = false;
         else
-          error ("strcat: inputs must be strings or cells of strings.")
+          error ("strcat: inputs must be strings or cells of strings");
         endif
         dims{nv} = size (varargin{nv});
         numstrs(nv) = numel (varargin{nv});
@@ -96,7 +96,7 @@
           if (size_equal (st, varargin{nv}))
             st{ns} = [st{ns}, varargin{nv}{ns}];
           else
-            error ("strcat: arguments must be the same size, or be scalars.");
+            error ("strcat: arguments must be the same size, or be scalars");
           endif
         endfor
       endfor