diff doc/interpreter/vectorize.txi @ 16934:48f5b993b819

doc: Use parentheses around if, switch conditions in documentation. * doc/interpreter/stmt.txi, doc/interpreter/vectorize.txi, examples/@FIRfilter/subsref.m: Use parentheses around if, switch conditions in documentation.
author Rik <rik@octave.org>
date Tue, 09 Jul 2013 14:16:35 -0700
parents 011119bf4868
children e6ddaa65a777
line wrap: on
line diff
--- a/doc/interpreter/vectorize.txi	Tue Jul 09 14:04:05 2013 -0700
+++ b/doc/interpreter/vectorize.txi	Tue Jul 09 14:16:35 2013 -0700
@@ -112,7 +112,7 @@
 @example
 @group
 for i = 1:n
-  if a(i) > 5
+  if (a(i) > 5)
     a(i) -= 20
   endif
 endfor