commit 829473d06227e69c6c88c78950056ad7cadd1187
parent 88a7d21397bc0f32506760ef340241e85820f744
Author: Alexander Burger <abu@software-lab.de>
Date: Fri, 11 Nov 2011 16:20:06 +0100
Minor doc fix
Diffstat:
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/doc/refR.html b/doc/refR.html
@@ -696,13 +696,12 @@ href="ref.html#pilog">Pilog</a> and <code><a href="refB.html#be">be</a></code>.
</code></pre>
<dt><a name="run"><code>(run 'any ['cnt ['lst]]) -> any</code></a>
-<dd>If <code>any</code> is an atom, <code>run</code> behaves like
-<code>eval</code>. Otherwise <code>any</code> is a list, which is evaluated in
-sequence. The last result is returned. If a binding environment offset
-<code>cnt</code> is given, that evaluation takes place in the corresponding
-environment, and an optional <code>lst</code> of excluded symbols can be
-supplied. See also <code><a href="refE.html#eval">eval</a></code> and <code><a
-href="refU.html#up">up</a></code>.
+<dd>If <code>any</code> is an atom, <code>run</code> behaves like <code><a
+href="refE.html#eval">eval</a></code>. Otherwise <code>any</code> is a list,
+which is evaluated in sequence. The last result is returned. If a binding
+environment offset <code>cnt</code> is given, that evaluation takes place in the
+corresponding environment, and an optional <code>lst</code> of excluded symbols
+can be supplied. See also <code><a href="refU.html#up">up</a></code>.
<pre><code>
: (run '((println (+ 1 2 3)) (println 'OK)))