Skip to content

Commit 3154c84

Browse files
committed
fix examples: missing commas & spacing according to mix format
1 parent f90fb05 commit 3154c84

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/scenic/primitive/style/miter_limit.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ defmodule Scenic.Primitive.Style.MiterLimit do
1111
1212
```elixir
1313
graph
14-
|> triangle( {{0,40},{40,40},{40,0}}
14+
|> triangle({{0, 40}, {40, 40}, {40, 0}},
1515
miter_limit: 2,
1616
stroke: {2, :green}
1717
)

lib/scenic/primitive/style/scissor.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ defmodule Scenic.Primitive.Style.Scissor do
1111
1212
```elixir
1313
graph
14-
|> triangle( {{0,40},{40,40},{40,0}}
14+
|> triangle({{0, 40}, {40, 40}, {40, 0}},
1515
miter_limit: 2,
1616
fill: :green,
1717
scissor: {20, 40}

0 commit comments

Comments
 (0)