We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edfeeb4 commit af12ccfCopy full SHA for af12ccf
doc-template/examples/chart.rs
@@ -3,7 +3,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
3
let root = BitMapBackend::new("plotters-doc-data/5.png", (640, 480)).into_drawing_area();
4
root.fill(&WHITE);
5
let root = root.margin(10, 10, 10, 10);
6
- // After this point, we should be able to draw construct a chart context
+ // After this point, we should be able to construct a chart context
7
let mut chart = ChartBuilder::on(&root)
8
// Set the caption of the chart
9
.caption("This is our first plot", ("sans-serif", 40).into_font())
0 commit comments