diff website/src/diff.html.luan @ 468:9b51e2413cab

documentation
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 08 May 2015 17:29:28 -0600
parents 47c7de1f2322
children 1285c52ea9d4
line wrap: on
line diff
--- a/website/src/diff.html.luan	Fri May 08 12:10:53 2015 -0600
+++ b/website/src/diff.html.luan	Fri May 08 17:29:28 2015 -0600
@@ -139,7 +139,7 @@
 	for i in range(from,to,step) do <i>block</i> end
 </pre></tt></p>
 
-<p>The Luan generic <b>for</b> statement is simpler than the Lua version because Luan only uses and expression, not an explist.  So a <b>for</b> statement like:</p>
+<p>The Luan generic <b>for</b> statement is simpler than the Lua version because Luan only uses an expression, not an explist.  So a <b>for</b> statement like:</p>
 
 <p><tt><pre>
 	for var_1, &middot;&middot;&middot;, var_n in exp do block end