diff --git a/README.md b/README.md index 259a98b..0aec1a5 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ local talkingSystem = tiny.processingSystem() talkingSystem.filter = tiny.requireAll("name", "mass", "phrase") function talkingSystem:process(e, dt) e.mass = e.mass + dt * 3 - print(("%s who weighs %d pounds, says %q."):format(e.name, e.mass, e.phrase) + print(("%s who weighs %d pounds, says %q."):format(e.name, e.mass, e.phrase)) end local joe = {