# HG changeset patch # User Rik # Date 1444254099 25200 # Node ID 1b62fc4e1b2f7a51982cd4582b49be4644726b44 # Parent c6059134f5d34da8791f3570d37bd3fbf0ae83db doc: Cuddle parentheses in example code of for loop. * stmt.txi: Cuddle parentheses in example code of for loop. diff -r c6059134f5d3 -r 1b62fc4e1b2f doc/interpreter/stmt.txi --- a/doc/interpreter/stmt.txi Wed Oct 07 09:45:44 2015 -0700 +++ b/doc/interpreter/stmt.txi Wed Oct 07 14:41:39 2015 -0700 @@ -541,7 +541,7 @@ @group fib = ones (1, 10); for i = 3:10 - fib (i) = fib (i-1) + fib (i-2); + fib(i) = fib(i-1) + fib(i-2); endfor @end group @end example