Skip to content

Commit

Permalink
Fix error in README.md
Browse files Browse the repository at this point in the history
It looks like as this needs to also be a symbol
  • Loading branch information
tobstarr authored and mindok committed Oct 25, 2023
1 parent d527156 commit bd9e0b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ There is a short-cut API which creates the `PlotContent` and plot in a single pa
For example:

```elixir
plot = Plot.new(dataset, Contex.PointPlot, 600, 400, mapping: %{x_col: :column_a, y_cols: [:column_b, column_c]})
plot = Plot.new(dataset, Contex.PointPlot, 600, 400, mapping: %{x_col: :column_a, y_cols: [:column_b, :column_c]})

Plot.to_svg(plot)
```
Expand Down

0 comments on commit bd9e0b6

Please sign in to comment.