diff doc/interpreter/errors.txi @ 18679:a142f35f3cb6

doc: Fix unbalanced parentheses in documentation. * errors.txi, install.txi, sparse.txi, vectorize.txi: Fix unbalanced parentheses. * data.cc (Fall, Feye): Fix unbalanced parentheses. * rand.cc (Frandn, Frande): Fix unbalanced parentheses. * amd.cc (Famd): Fix unbalanced parentheses. * ccolamd.cc (Fccolamd): Fix unbalanced parentheses. * DASPK-opts.in: Fix unbalanced parentheses. * cplxpair.m, javamem.m, glpk.m, area.m, peaks.m, hgload.m, hotelling_test_2.m, hgsave.m: Fix unbalanced parentheses.
author Rik <rik@octave.org>
date Fri, 25 Apr 2014 15:49:03 -0700
parents 6fd22474783e
children
line wrap: on
line diff
--- a/doc/interpreter/errors.txi	Fri Apr 25 13:25:25 2014 -0700
+++ b/doc/interpreter/errors.txi	Fri Apr 25 15:49:03 2014 -0700
@@ -285,7 +285,7 @@
 @group
 function rand42
   old_state = rand ("state");
-  restore_state = onCleanup (@@() rand ("state", old_state);
+  restore_state = onCleanup (@@() rand ("state", old_state));
   rand ("state", 42);
   @dots{}
 endfunction  # rand generator state restored by onCleanup