From f6acfc157abf949f7ffb0a67489125378343fda3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rog=C3=A9rio=20Brito?= Date: Sat, 18 Jul 2015 18:31:01 -0300 Subject: [PATCH] Common: Some extra spelling mistakes. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rogério Brito --- Common/MV.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Common/MV.js b/Common/MV.js index 8960259..25b012c 100644 --- a/Common/MV.js +++ b/Common/MV.js @@ -257,7 +257,7 @@ function subtract( u, v ) return result; } else if ( u.matrix && !v.matrix || !u.matrix && v.matrix ) { - throw "subtact(): trying to subtact matrix and non-matrix variables"; + throw "subtract(): trying to subtract matrix and non-matrix variables"; } if ( u.length != v.length ) { @@ -580,7 +580,7 @@ function normalize( u, excludeLastComponent ) function mix( u, v, s ) { if ( typeof s !== "number" ) { - throw "mix: the last paramter " + s + " must be a number"; + throw "mix: the last parameter " + s + " must be a number"; } if ( u.length != v.length ) {