changeset 6428:39fcabcad9cb octave-forge

control-oo: clarify expression
author paramaniac
date Mon, 07 Dec 2009 21:40:35 +0000
parents 112b2cf8ca7d
children 5c79e732fbb9
files extra/control-oo/inst/@lti/lft.m
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/extra/control-oo/inst/@lti/lft.m	Mon Dec 07 20:27:11 2009 +0000
+++ b/extra/control-oo/inst/@lti/lft.m	Mon Dec 07 21:40:35 2009 +0000
@@ -56,11 +56,11 @@
     endif
 
     if (nu > nu_max)
-      error ("lft: argumend nu (%d) must be smaller than %d", nu, nu_max+1);
+      error ("lft: argumend nu (%d) must at most %d", nu, nu_max);
     endif
 
     if (ny > ny_max)
-      error ("lft: argument ny (%d) must be smaller than %d", ny, ny_max+1);
+      error ("lft: argument ny (%d) must at most %d", ny, ny_max);
     endif
   end