Skip to content

Commit 76879c7

Browse files
committed
Merge branch 'master' of github.com:38/plotters
2 parents 87dc682 + 3c261fe commit 76879c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ The feature `evcxr` should be enabled when including Plotters to Jupyter Noteboo
191191
The following code shows a minimal example of this.
192192

193193
```text
194-
:dep plotters = { git = "https://github.com/38/plotters", default_features = false, features = ["evcxr"] }
194+
:dep plotters = { git = "https://github.com/38/plotters", default_features = false, features = ["evcxr", "line_series"] }
195195
extern crate plotters;
196196
use plotters::prelude::*;
197197

src/coord/ranged.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ impl<'a, X: Ranged, Y: Ranged> MeshLine<'a, X, Y> {
168168
MeshLine::XMesh(a, b, _) => (a, b),
169169
MeshLine::YMesh(a, b, _) => (a, b),
170170
};
171-
backend.draw_line(left, right, &style.color)
171+
backend.draw_line(left, right, style)
172172
}
173173
}
174174

0 commit comments

Comments
 (0)