From 5882ca1303a58b805da02b60d3098ff042f7160a Mon Sep 17 00:00:00 2001 From: rxi Date: Wed, 19 Mar 2014 12:54:14 +0000 Subject: [PATCH] Fixed minor error in lume.set()'s README.md example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 08f0d79..3a098f4 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ Returns a copy of the `t` table with all the duplicate values removed. If `retainkeys` is true the table is not treated as an array and retains its original keys. ```lua -lume.set({2, 1, 2, "cat", "cat"}) -- Returns {1, 2, cat} +lume.set({2, 1, 2, "cat", "cat"}) -- Returns {1, 2, "cat"} ``` ### lume.filter(t, fn [, retainkeys])