Skip to content

Commit

Permalink
Remove redundant comma
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp-M committed Sep 30, 2024
1 parent 19edc5e commit 48016b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xilem_web/src/interfaces.rs
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ macro_rules! style_impls {
/// Circle::new((10.0, 20.0), 30.0)
/// .style(s("transform", "translate(10px, 0)")) // can be combined with untyped `transform`
/// .scale(1.5)
/// .scale((1.5, 2.0)),
/// .scale((1.5, 2.0))
/// // results in the following html:
/// // <circle r="30" cy="20" cx="10" style="transform: translate(10px, 0) scale(1.5) scale(1.5, 2);"></circle>
/// # }
Expand Down

0 comments on commit 48016b8

Please sign in to comment.