Updated README example for lume.trace()

This commit is contained in:
rxi 2015-08-14 20:56:41 +01:00
parent 688de3368e
commit 717745fe79

View File

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