From 037f5e332564b76bed94420f0c9a8fb4f32bfc8e Mon Sep 17 00:00:00 2001 From: rxi Date: Sat, 9 May 2015 15:44:52 +0100 Subject: [PATCH] Missing '.' in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9fbd593..6ba97fd 100644 --- a/README.md +++ b/README.md @@ -253,7 +253,7 @@ lume.invert({a = "x", b = "y"}) -- returns {x = "a", y = "b"} ``` ### lume.pick(t, ...) -Returns a copy of the table filtered to only contain values for the given keys +Returns a copy of the table filtered to only contain values for the given keys. ```lua lume.pick({ a = 1, b = 2, c = 3 }, "a", "c") -- Returns { a = 1, c = 3 } ```