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

style fixes
author John W. Eaton <jwe@octave.org>
date Wed, 04 Feb 2009 10:56:23 -0500
parents a1dbe9d80eee
children eb63fbe60fab
line wrap: on
line diff
--- a/scripts/strings/dec2base.m	Wed Feb 04 16:05:01 2009 +0100
+++ b/scripts/strings/dec2base.m	Wed Feb 04 10:56:23 2009 -0500
@@ -55,7 +55,7 @@
   if (numel (n) != length (n))
     n = n(:);
   elseif (any (n < 0 | n != fix (n)))
-    error ("dec2base: can only convert non-negative integers")
+    error ("dec2base: can only convert non-negative integers");
   endif
 
   symbols = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";