Skip to content

Commit

Permalink
Merge branch 'master' of git://github.com/wiedi/fpmc-js
Browse files Browse the repository at this point in the history
  • Loading branch information
Karl Glatz committed Feb 22, 2012
2 parents ff2ce02 + e4afa11 commit 682c0ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion matrix.js
Expand Up @@ -29,7 +29,7 @@ LazyVector.prototype = {
var i, product = 0, n = this.elements.length;
if(n != vector.elements.length) { return null; }
while(n--) {
product += this.e(n) * vector.elements.e(n);
product += this.e(n) * vector.e(n);
}
return product;
}
Expand Down

0 comments on commit 682c0ef

Please sign in to comment.