From ac92e3c58e4be1e8877e60dc60d0a85f55c4f2b6 Mon Sep 17 00:00:00 2001 From: Anup Bishnoi Date: Tue, 19 May 2015 22:48:03 -0400 Subject: [PATCH] Fixed spelling error in 'rotation' --- src/utils/Utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/Utils.js b/src/utils/Utils.js index 8e64b97a8..335262e1f 100644 --- a/src/utils/Utils.js +++ b/src/utils/Utils.js @@ -120,7 +120,7 @@ Phaser.Utils = { * * @method Phaser.Utils.rotateArray * @param {Array} matrix - The array to rotate; this matrix _may_ be altered. - * @param {number|string} direction - The amount to rotate: the roation in degrees (90, -90, 270, -270, 180) or a string command ('rotateLeft', 'rotateRight' or 'rotate180'). + * @param {number|string} direction - The amount to rotate: the rotation in degrees (90, -90, 270, -270, 180) or a string command ('rotateLeft', 'rotateRight' or 'rotate180'). * @return {Array} The rotated matrix. The source matrix should be discarded for the returned matrix. * @deprecated 2.2.0 - Use Phaser.ArrayUtils.rotateMatrix */