diff doc/interpreter/var.txi @ 7031:120f3135952f

[project @ 2007-10-15 15:30:03 by jwe]
author jwe
date Mon, 15 Oct 2007 15:31:21 +0000
parents fd42779a8428
children 745a8299c2b5
line wrap: on
line diff
--- a/doc/interpreter/var.txi	Mon Oct 15 13:20:01 2007 +0000
+++ b/doc/interpreter/var.txi	Mon Oct 15 15:31:21 2007 +0000
@@ -193,7 +193,8 @@
 @group
 function count_calls ()
   persistent calls = 0;
-  printf ("'count_calls' has been called %d times\n", ++calls);
+  printf ("'count_calls' has been called %d times\n",
+          ++calls);
 endfunction
 
 for i = 1:3
@@ -248,7 +249,8 @@
   if (isempty (calls))
     calls = 0;
   endif
-  printf ("'count_calls' has been called %d times\n", ++calls);
+  printf ("'count_calls' has been called %d times\n",
+          ++calls);
 endfunction
 @end group
 @end example