Skip to content

Commit

Permalink
fix invalid svg result in example rand
Browse files Browse the repository at this point in the history
  • Loading branch information
piaoger authored Dec 10, 2020
1 parent 5d7d0c9 commit dde76c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/rand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ fn main() {
);
for pt in &pts {
println!(
r#" <circle cx="{}" cy="{}", r="3", fill="blue" />"#,
r#" <circle cx="{}" cy="{}" r="3" fill="blue" />"#,
pt.x, pt.y
)
}
for pt in &auto_pts {
println!(
r##" <circle cx="{}" cy="{}", r="3", fill="#88c" />"##,
r##" <circle cx="{}" cy="{}" r="3" fill="#88c" />"##,
pt.x, pt.y
)
}
Expand Down

0 comments on commit dde76c2

Please sign in to comment.