Skip to content

Commit

Permalink
fix: fixed doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzrehde committed Oct 2, 2024
1 parent e5b785d commit 886c389
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//!
//! fn main() -> Result<(), String> {
//! let mut img: Image = Image::new(200, 200);
//! let (x1, y1) = (10, 10)
//! let (x1, y1) = (10, 10);
//! // Second point's x and y coordinates.
//! let (x2, y2) = img.draw_simple_line(x1, y1, 120, 100, COLORS[1])?;
//! // Third point's x and y coordinates.
Expand Down

0 comments on commit 886c389

Please sign in to comment.