diff scripts/plot/ribbon.m @ 8664:e07e93c04080

style fixes
author John W. Eaton <jwe@octave.org>
date Wed, 04 Feb 2009 10:56:23 -0500
parents 85c9906abfd1
children eb63fbe60fab
line wrap: on
line diff
--- a/scripts/plot/ribbon.m
+++ b/scripts/plot/ribbon.m
@@ -50,13 +50,13 @@
 
   if (isvector (x) && isvector (y))
     if (length (x) != length (y))
-      error ("ribbon: in case of vectors, X and Y must have same length")
+      error ("ribbon: in case of vectors, X and Y must have same length");
     else
       [x, y] = meshgrid (x, y);
     endif
   else
     if (! size_equal(x, y))
-      error ("ribbon: in case of matrices, X and Y must have same size")
+      error ("ribbon: in case of matrices, X and Y must have same size");
     endif
   endif