From d9d311d8587b2e60be3854a85ecc531370e52547 Mon Sep 17 00:00:00 2001 From: bakpakin Date: Thu, 27 Aug 2015 13:26:09 -0400 Subject: [PATCH] Fix system docs. --- tiny.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tiny.lua b/tiny.lua index eaf9758..73dd14c 100644 --- a/tiny.lua +++ b/tiny.lua @@ -290,9 +290,9 @@ end -- Processing Systems have three extra callbacks besides those inheritted from -- vanilla Systems. -- --- function system:preProcess(entities, dt) -- Called before iteration. +-- function system:preProcess(dt) -- Called before iteration. -- function system:process(entities, dt) -- Process each entity. --- function system:postProcess(entity, dt) -- Called after iteration. +-- function system:postProcess(dt) -- Called after iteration. -- -- Processing Systems have their own `update` method, so don't implement a -- a custom `update` callback for Processing Systems.