Fix jshint issues in src/geom

This commit is contained in:
Christian Wesselhoeft 2014-03-23 01:35:53 -07:00
parent ebad4c1d38
commit 04d88b6c35
2 changed files with 2 additions and 2 deletions

View file

@ -119,7 +119,7 @@ Phaser.Circle.prototype = {
*/ */
distance: function (dest, round) { distance: function (dest, round) {
if (typeof round === "undefined") { round = false } if (typeof round === "undefined") { round = false; }
if (round) if (round)
{ {

View file

@ -411,7 +411,7 @@ Phaser.Point.equals = function (a, b) {
*/ */
Phaser.Point.distance = function (a, b, round) { Phaser.Point.distance = function (a, b, round) {
if (typeof round === "undefined") { round = false } if (typeof round === "undefined") { round = false; }
if (round) if (round)
{ {