Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
flyover committed May 12, 2016
1 parent 9fed3fc commit 8ec1dec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spine.js
Original file line number Diff line number Diff line change
Expand Up @@ -629,13 +629,13 @@ spine.Vector.prototype.y = 0;

/**
* @return {spine.Vector}
* @param {spine.Vector} m
* @param {spine.Vector} v
* @param {spine.Vector=} out
*/
spine.Vector.copy = function(m, out) {
spine.Vector.copy = function(v, out) {
out = out || new spine.Vector();
out.x = m.x;
out.y = m.y;
out.x = v.x;
out.y = v.y;
return out;
}

Expand Down

0 comments on commit 8ec1dec

Please sign in to comment.