# HG changeset patch # User jbe # Date 1408959527 -7200 # Node ID facf29831f6f6b8d3d00b4ef60366d78e401ed15 # Parent 31a78781a1e0b48678f1b8aa297761237f2f5892 Two changes in README diff -r 31a78781a1e0 -r facf29831f6f README --- a/README Mon Aug 25 04:11:58 2014 +0200 +++ b/README Mon Aug 25 11:38:47 2014 +0200 @@ -83,8 +83,8 @@ Obviously, this isn't something we want to do in every function that accepts sequential data. Therefore, we usually decide for one of the two first forms -and therefore disallow the other possible representation of sequential data to -be passed to the function. +and thus disallow the other possible representation of sequential data to be +passed to the function. This extension, however, modifies Lua's ``ipairs`` statement in such way that it automatically accepts either a table or an iterator function as argument. @@ -143,8 +143,10 @@ Though, if such behavior is desired, it can still be implemented through the ``__ipairs`` metamethod. -Unless manually done by the user in the ``__ipairs`` metamethod, this extension -never creates any closures or other values that need to be garbage collected. +Unless manually done by the user in the ``__ipairs`` metamethod, the ``ipairs`` +function as well as the corresponding C functions and macros provided by this +extension never create any closures or other values that need to be garbage +collected.