From 602cf574faba3203a3e5390026d0863de671906b Mon Sep 17 00:00:00 2001 From: rxi Date: Thu, 27 Feb 2014 23:20:38 +0000 Subject: [PATCH] Fixed incorrect lume.merge() example in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e93f929..35067ab 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ Merges all the values from the table `t2` into `t` in place. If `retainkeys` is true the table is not treated as an array and retains its original keys; if `t` and `t2` have a conflicting key, the value from `t2` is used. ```lua -lume.merge({2, 3}, {4, 5}, true) -- Returns {2, 3, 4, 5} +lume.merge({2, 3}, {4, 5}) -- Returns {2, 3, 4, 5} ``` ### lume.find(t, value)