Skip to content

Commit

Permalink
Diagram : change strokejoin -> strokelinejoin
Browse files Browse the repository at this point in the history
  • Loading branch information
ray-pH committed Sep 23, 2023
1 parent ee8bf85 commit 122d3d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/diagram.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export class Diagram {
public strokelinecap(linecap : 'butt' | 'round' | 'square') : Diagram {
return this.update_style('stroke-linecap', linecap);
}
public strokejoin(linejoin : 'arcs' | 'bevel' | 'miter' | 'miter-clip' | 'round') : Diagram {
public strokelinejoin(linejoin : 'arcs' | 'bevel' | 'miter' | 'miter-clip' | 'round') : Diagram {
return this.update_style('stroke-linejoin', linejoin);
}
public strokedasharray(dasharray : number[]) : Diagram {
Expand Down

0 comments on commit 122d3d5

Please sign in to comment.