Skip to content

Commit 4a32318

Browse files
committed
eslint fixes
1 parent 2a7e715 commit 4a32318

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/curves/Curve.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ var Curve = new Class({
308308
// If divisions is a falsey value (false, null, 0, undefined, etc) then we calculate it based on the stepRate instead.
309309
if (!divisions)
310310
{
311-
if (!stepRate)
311+
if (!stepRate)
312312
{
313313
divisions = this.defaultDivisions;
314314
}

src/curves/LineCurve.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ var LineCurve = new Class({
7272
* @default 1
7373
* @since 3.0.0
7474
*/
75-
this.arcLengthDivisions = 1;
75+
this.arcLengthDivisions = 1;
7676
},
7777

7878
/**

0 commit comments

Comments
 (0)