Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed May 19, 2020
1 parent 7b23ced commit 3d9b62d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elements/edgeLine.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export class EdgeLine extends Line {
// Stroke Line Options
ctx.lineCap = options.borderCapStyle;
ctx.setLineDash(options.borderDash || []);
ctx.lineDashOffset = options.borderDashOffsetborderDash;
ctx.lineDashOffset = options.borderDashOffset;
ctx.lineJoin = options.borderJoinStyle;
ctx.lineWidth = options.borderWidth;
ctx.strokeStyle = options.borderColor;
Expand Down

0 comments on commit 3d9b62d

Please sign in to comment.