Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stevedonovan/Penlight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/manual/01-introduction.md.html')
-rw-r--r--docs/manual/01-introduction.md.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/manual/01-introduction.md.html b/docs/manual/01-introduction.md.html
index 0045f9d..fe42256 100644
--- a/docs/manual/01-introduction.md.html
+++ b/docs/manual/01-introduction.md.html
@@ -161,7 +161,7 @@ throw errors, to simplify coding, and so should be wrapped in <a href="https://w
<p>If you are used to Python conventions, please note that all indices consistently
start at 1.</p>
-<p>The Lua function <code>table.foreach</code> has been deprecated in favour of the <code>for in</code>
+<p>The Lua function <a href="https://www.lua.org/manual/5.1/manual.html#pdf-table.foreach">table.foreach</a> has been deprecated in favour of the <code>for in</code>
statement, but such an operation becomes particularly useful with the
higher-order function support in Penlight. Note that <a href="../libraries/pl.tablex.html#foreach">tablex.foreach</a> reverses
the order, so that the function is passed the value and then the key. Although