From 311943e070b34ca492844d8c41791fa83664b44f Mon Sep 17 00:00:00 2001 From: bakpakin Date: Wed, 10 Aug 2016 21:42:18 -0400 Subject: [PATCH] Fix doc bug. --- tiny.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiny.lua b/tiny.lua index 710d4b8..c18617f 100644 --- a/tiny.lua +++ b/tiny.lua @@ -230,7 +230,7 @@ end -- removed from the world, after all Entities are removed from the System. -- * `function system:preWrap(dt)` - Called on each system before update is -- called on any system. --- * `function system:postWrap(dt) - Called on each system in reverse order +-- * `function system:postWrap(dt)` - Called on each system in reverse order -- after update is called on each system. The idea behind `preWrap` and -- `postWrap` is to allow for systems that modify the behavior of other systems. -- Say there is a DrawingSystem, which draws sprites to the screen, and a