From e40f51c8113fff670ab6c14022be80d758eb19e4 Mon Sep 17 00:00:00 2001 From: rxi Date: Thu, 27 Feb 2014 22:51:22 +0000 Subject: [PATCH] Fixed even more typos in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 22f0ce0..e93f929 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,7 @@ Splits the string `str` into words and returns a table of the sub strings. If `sep` is provided the string will be split at any of the characters in `sep` instead of on whitespace. ```lua -lume.split("One two three") -- Returns {"One", "two", "three} +lume.split("One two three") -- Returns {"One", "two", "three"} ``` ### lume.trim(str [, chars])