changeset 8685:983ac67dc3d4

polyout.m: additional style fixes
author John W. Eaton <jwe@octave.org>
date Thu, 05 Feb 2009 13:43:17 -0500
parents 6d15bc6c4c15
children dd13355fc98a
files scripts/polynomial/polyout.m
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/polynomial/polyout.m	Thu Feb 05 13:42:29 2009 -0500
+++ b/scripts/polynomial/polyout.m	Thu Feb 05 13:43:17 2009 -0500
@@ -48,13 +48,13 @@
   endif
 
   if (! isvector (c))
-    error("polyout: first argument must be a vector");
+    error ("polyout: first argument must be a vector");
   endif
 
   if (nargin == 1)
     x = "s";
   elseif (! ischar (x))
-    error("polyout: second argument must be a string");
+    error ("polyout: second argument must be a string");
   endif
 
   n = length (c);