From 425a52b99f934c876d354102b70a2bedc8f13a97 Mon Sep 17 00:00:00 2001 From: rxi Date: Tue, 18 Mar 2014 18:01:12 +0000 Subject: [PATCH] Fixed spelling mistake in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f5a4bb..08f0d79 100644 --- a/README.md +++ b/README.md @@ -202,7 +202,7 @@ lume.time(function(x) return x end, "hello") -- Returns 0, "hello" ### lume.lambda(str) Takes a string lambda and returns a function. `str` should be a list of -comma-seperated parameters, followed by `->`, followed by the expression which +comma-separated parameters, followed by `->`, followed by the expression which will be evaluated and returned. ```lua local f = lume.lambda "x,y -> 2*x+y"