From cb95fea0043ea719632c85b7d6dbca46882fa61c Mon Sep 17 00:00:00 2001 From: rxi Date: Tue, 5 May 2015 19:37:52 +0100 Subject: [PATCH] Missing language hint on lume.extend's README example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 524508d..19602f5 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ lume.clear(t) -- `t` becomes {} Copies all the fields from the source tables to the table `t` and returns `t`. Tables are iterated in order, so the right-most table overrides existing fields. -``` +```lua local t = { a = 1, b = 2 } lume.extend(t, { b = 4, c = 6 }) -- `t` becomes { a = 1, b = 4, c = 6 } ```