Skip to content

Commit 7e45afc

Browse files
committed
fixed time() duplicate
1 parent f941c65 commit 7e45afc

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

index.html

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,7 @@ <h6>math functions</h6>
225225
shr(x, y) -- shift right
226226
sin(x) -- x sine, [0..1]; inverted
227227
sqrt(x) -- x square root
228-
srand(x) -- set random seed
229-
time() -- current time in seconds</code></pre>
228+
srand(x) -- set random seed</code></pre>
230229

231230
<h6>operators</h6>
232231
<pre><code class="lua">a = b -- assignment
@@ -284,10 +283,9 @@ <h6>flow control</h6>
284283
-- for block
285284
end
286285

287-
for &lt;key&gt;,&lt;value&gt; in pairs(&lt;table&gt;) do
286+
for &lt;key&gt;, &lt;value&gt; in pairs(&lt;table&gt;) do
288287
-- for block
289-
end
290-
</code></pre>
288+
end</code></pre>
291289
</div>
292290

293291
<!-- MEMORY -->

0 commit comments

Comments
 (0)