From 69fb23d2ed2023842276e95b62971ac48a4c8e5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Fri, 10 Mar 2017 15:52:19 +0100 Subject: [PATCH] Docs: Fix parameter sequence in Matrix constructor. Closes #1273 --- src/basic/Matrix.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic/Matrix.js b/src/basic/Matrix.js index 3e57be9b..90d8f0ff 100644 --- a/src/basic/Matrix.js +++ b/src/basic/Matrix.js @@ -52,8 +52,8 @@ var Matrix = Base.extend(/** @lends Matrix# */{ * * @name Matrix#initialize * @param {Number} a the a property of the transform - * @param {Number} c the c property of the transform * @param {Number} b the b property of the transform + * @param {Number} c the c property of the transform * @param {Number} d the d property of the transform * @param {Number} tx the tx property of the transform * @param {Number} ty the ty property of the transform