Fix doc bug.

This commit is contained in:
bakpakin 2016-08-10 21:42:18 -04:00
parent 8a3c22e74f
commit 311943e070

View File

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