diff --git a/README.md b/README.md index 97d34db..417299d 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,8 @@ lume.weightedchoice({ ["cat"] = 10, ["dog"] = 5, ["frog"] = 0 }) ``` ### lume.push(t, ...) -Pushes all the given values to the end of the table `t` and returns the values. +Pushes all the given values to the end of the table `t` and returns the pushed +values. Nil values are ignored. ```lua local t = { 1, 2, 3 } lume.push(t, 4, 5) -- `t` becomes { 1, 2, 3, 4, 5 }