diff scripts/general/bitset.m @ 12480:139f993936af

Uppercase variables in script error strings.
author Rik <octave@nomad.inbox5.com>
date Fri, 25 Feb 2011 20:12:05 -0800
parents c792872f8942
children 9e7ebbaf69ff
line wrap: on
line diff
--- a/scripts/general/bitset.m
+++ b/scripts/general/bitset.m
@@ -81,7 +81,7 @@
 
   m = double (n(:));
   if (any (m < 1) || any (m > Amax))
-    error ("bitset: n must be in the range [1,%d]", Amax);
+    error ("bitset: N must be in the range [1,%d]", Amax);
   endif
 
   mask = bitshift (_conv (1), uint8 (n) - uint8 (1));