From 717745fe79da667a57baacb0b8d973f46b24a2df Mon Sep 17 00:00:00 2001 From: rxi Date: Fri, 14 Aug 2015 20:56:41 +0100 Subject: [PATCH] Updated README example for lume.trace() --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6ba97fd..b95ca48 100644 --- a/README.md +++ b/README.md @@ -383,7 +383,7 @@ Prints the current filename and line number followed by each argument separated by a space. ```lua -- Assuming the file is called "example.lua" and the next line is 12: -lume.trace("hello", 1234) -- Prints "[example.lua:12] hello 1234" +lume.trace("hello", 1234) -- Prints "example.lua:12: hello 1234" ``` ### lume.dostring(str)