From 6dca66c501c927cf2756a89d7ed8a759aa13f892 Mon Sep 17 00:00:00 2001 From: Nicholas Howell Date: Wed, 19 Feb 2014 22:17:38 -0500 Subject: [PATCH] Fix typo of Phaser.World#preUpdate for docs --- src/core/World.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/World.js b/src/core/World.js index 0bb15ddd..cdf8360a 100644 --- a/src/core/World.js +++ b/src/core/World.js @@ -64,7 +64,7 @@ Phaser.World.prototype.boot = function () { * This is called automatically after the plugins preUpdate and before the State.update. * Most objects have preUpdate methods and it's where initial movement, drawing and calculations are done. * -* @method Phaser.World#update +* @method Phaser.World#preUpdate */ Phaser.World.prototype.preUpdate = function () {