From 2beca9a0ad20e7f9dc08f7cdafb5b9d87c29e5cf Mon Sep 17 00:00:00 2001 From: "C.y" Date: Tue, 3 Nov 2020 19:35:44 +0800 Subject: [PATCH] fix README.md example error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = {