Fixed spelling mistake in README.md

This commit is contained in:
rxi 2014-03-18 18:01:12 +00:00
parent a234e36975
commit 425a52b99f

View File

@ -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"