From ed285b0ba07e49cb2e18c65d2698d4e748369635 Mon Sep 17 00:00:00 2001 From: Jim Garrison Date: Tue, 23 Jul 2013 13:02:46 -0700 Subject: [PATCH] update Matrix.prototype.resize() doc to refer to "matrix", not "vector" --- src/type/Matrix.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/type/Matrix.js b/src/type/Matrix.js index 563b98bc7..ac895599c 100644 --- a/src/type/Matrix.js +++ b/src/type/Matrix.js @@ -457,7 +457,7 @@ function _init(array) { * Resize the matrix * @param {Number[]} size * @param {*} [defaultValue] Default value, filled in on new entries. - * If not provided, the vector will be filled + * If not provided, the matrix will be filled * with zeros. */ Matrix.prototype.resize = function (size, defaultValue) {