diff scripts/set/intersect.m @ 8507:cadc73247d65

style fixes
author John W. Eaton <jwe@octave.org>
date Tue, 13 Jan 2009 14:08:36 -0500
parents e56bb65186f6
children eb63fbe60fab
line wrap: on
line diff
--- a/scripts/set/intersect.m
+++ b/scripts/set/intersect.m
@@ -87,7 +87,7 @@
 %! a = [3 2 4 5 7 6 5 1 0 13 13];
 %! b = [3 5 12 1 1 7];
 %! [c,ia,ib] = intersect(a,b);
-%! assert( c,[1 3 5 7]);
+%! assert(c,[1 3 5 7]);
 %! assert(ia,[8 1 7 5]);
 %! assert(ib,[5 1 2 6]);
 %! assert(a(ia),c);