Skip to content

Commit af12ccf

Browse files
authored
Fix extra word in example chart.rs
1 parent edfeeb4 commit af12ccf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc-template/examples/chart.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
33
let root = BitMapBackend::new("plotters-doc-data/5.png", (640, 480)).into_drawing_area();
44
root.fill(&WHITE);
55
let root = root.margin(10, 10, 10, 10);
6-
// After this point, we should be able to draw construct a chart context
6+
// After this point, we should be able to construct a chart context
77
let mut chart = ChartBuilder::on(&root)
88
// Set the caption of the chart
99
.caption("This is our first plot", ("sans-serif", 40).into_font())

0 commit comments

Comments
 (0)